Package org.jetbrains.jps.haxe.model.module.impl

Examples of org.jetbrains.jps.haxe.model.module.impl.JpsHaxeModuleSettingsImpl


          moduleSettingsBase = XmlSerializer.deserialize(componentElement, HaxeModuleSettingsBaseImpl.class);
        }
        else {
          moduleSettingsBase = new HaxeModuleSettingsBaseImpl();
        }
        return new JpsHaxeModuleSettingsImpl(moduleSettingsBase);
      }

      @Override
      public void saveProperties(@NotNull final JpsHaxeModuleSettings settings, @NotNull final Element componentElement) {
        XmlSerializer.serializeInto(settings.getProperties(), componentElement);
View Full Code Here

TOP

Related Classes of org.jetbrains.jps.haxe.model.module.impl.JpsHaxeModuleSettingsImpl

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.