Examples of CIShellPreferenceStore


Examples of org.cishell.reference.gui.prefs.swt.CIShellPreferenceStore

     * where you can simply set the changes to the preference store and they propagate correctly.
     */
   
    try {
      if (this.getPreferenceStore() instanceof CIShellPreferenceStore) {
        CIShellPreferenceStore realPrefStore = (CIShellPreferenceStore) this.getPreferenceStore();
        realPrefStore.save();
      }
    } catch (ClassCastException e) {
      super.performApply();
    } catch (IOException e) {
      this.log.log(LogService.LOG_WARNING, "Unable to save preferences due to I/O Exception", e);
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.