Package com.intellij.plugins.haxe.module.impl

Examples of com.intellij.plugins.haxe.module.impl.HaxeModuleSettingsBaseImpl


  public static JpsModulePropertiesSerializer<JpsHaxeModuleSettings> createModulePropertiesSerializer() {
    return new JpsModulePropertiesSerializer<JpsHaxeModuleSettings>(INSTANCE, ID, "HaxeModuleSettingsStorage") {
      @Override
      public JpsHaxeModuleSettings loadProperties(@Nullable final Element componentElement) {
        final HaxeModuleSettingsBaseImpl moduleSettingsBase;
        if (componentElement != null) {
          moduleSettingsBase = XmlSerializer.deserialize(componentElement, HaxeModuleSettingsBaseImpl.class);
        }
        else {
          moduleSettingsBase = new HaxeModuleSettingsBaseImpl();
        }
        return new JpsHaxeModuleSettingsImpl(moduleSettingsBase);
      }

      @Override
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.module.impl.HaxeModuleSettingsBaseImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.