Examples of HaxeSdkAdditionalDataBase


Examples of com.intellij.plugins.haxe.config.sdk.HaxeSdkAdditionalDataBase

  public static JpsSdkPropertiesSerializer<JpsHaxeSdkAdditionalData> createJpsSdkPropertiesSerializer() {
    return new JpsSdkPropertiesSerializer<JpsHaxeSdkAdditionalData>(HaxeCommonBundle.message("haxe.sdk.name"), INSTANCE) {
      @NotNull
      public JpsHaxeSdkAdditionalData loadProperties(@Nullable final Element propertiesElement) {
        final HaxeSdkAdditionalDataBase sdkData = XmlSerializer.deserialize(propertiesElement, HaxeSdkAdditionalDataBaseImpl.class);
        return new JpsHaxeSdkAdditionalDataImpl(sdkData);
      }

      public void saveProperties(@NotNull final JpsHaxeSdkAdditionalData properties, @NotNull final Element element) {
        XmlSerializer.serializeInto(properties.getSdkData(), element);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.