Package com.dubture.composer.core.preferences

Examples of com.dubture.composer.core.preferences.PreferencesSupport


      setDirty(false);
      saving = false;
     
      // save actions
      IPreferenceStore store = ComposerPlugin.getDefault().getPreferenceStore();
      PreferencesSupport prefSupport = new PreferencesSupport(ComposerPlugin.ID, store);
     
      Boolean buildpath = prefSupport.getBooleanPreferencesValue(ComposerPreferenceConstants.SAVEACTION_BUILDPATH, false, project);
      Boolean update = prefSupport.getBooleanPreferencesValue(ComposerPreferenceConstants.SAVEACTION_UPDATE, false, project);
     
      update = update && (newDepSinceLastSave || newDevDepSinceLastSave);

      if (update) {
        ComposerJob job;
View Full Code Here

TOP

Related Classes of com.dubture.composer.core.preferences.PreferencesSupport

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.