Package org.clarent.ivyidea.config.model

Examples of org.clarent.ivyidea.config.model.PropertiesSettings


        internalState.setResolveCacheOnly(chkUseCacheOnly.isSelected());
        internalState.setResolveInBackground(chkBackground.isSelected());
        internalState.setAlwaysAttachSources(autoAttachSources.isSelected());
        internalState.setAlwaysAttachJavadocs(autoAttachJavadocs.isSelected());
        internalState.setUseCustomIvySettings(useYourOwnIvySettingsRadioButton.isSelected());
        final PropertiesSettings propertiesSettings = new PropertiesSettings();
        propertiesSettings.setPropertyFiles(getPropertiesFiles());
        internalState.setPropertiesSettings(propertiesSettings);
        internalState.setLibraryNameIncludesModule(includeModuleNameCheckBox.isSelected());
        internalState.setLibraryNameIncludesConfiguration(includeConfigurationNameCheckBox.isSelected());
        final Object selectedLogLevel = ivyLogLevelComboBox.getSelectedItem();
        internalState.setIvyLogLevelThreshold(selectedLogLevel == null ? IvyLogLevel.None.name() : selectedLogLevel.toString());
View Full Code Here

TOP

Related Classes of org.clarent.ivyidea.config.model.PropertiesSettings

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.