Examples of savePreferences()


Examples of com.cburch.logisim.gui.main.Frame.savePreferences()

 
  private static Frame createFrame(Project sourceProject, Project newProject) {
    if (sourceProject != null) {
      Frame frame = sourceProject.getFrame();
      if (frame != null) {
        frame.savePreferences();
      }
    }
    Frame newFrame = new Frame(newProject);
    newProject.setFrame(newFrame);
    return newFrame;
View Full Code Here

Examples of com.cburch.logisim.gui.main.Frame.savePreferences()

    return ret;
  }

  public static void doQuit() {
    Frame top = Projects.getTopFrame();
    top.savePreferences();
   
    for (Project proj : new ArrayList<Project>(Projects.getOpenProjects())) {
      if (!proj.confirmClose(Strings.get("confirmQuitTitle"))) return;
    }
    System.exit(0);
View Full Code Here

Examples of com.cburch.logisim.gui.main.Frame.savePreferences()

    private static Frame createFrame(Project sourceProject, Project newProject) {
        if (sourceProject != null) {
            Frame frame = sourceProject.getFrame();
            if (frame != null) {
                frame.savePreferences();
            }
        }
        Frame newFrame = new Frame(newProject);
        newProject.setFrame(newFrame);
        return newFrame;
View Full Code Here

Examples of com.cburch.logisim.gui.main.Frame.savePreferences()

        return ret;
    }

    public static void doQuit() {
        Frame top = Projects.getTopFrame();
        top.savePreferences();

        for (Project proj : new ArrayList<Project>(Projects.getOpenProjects())) {
            if (!proj.confirmClose(getFromLocale("confirmQuitTitle"))) {
                return;
            }
View Full Code Here

Examples of nu.fw.jeti.plugins.PreferencesPanel.savePreferences()

  public void savePreferences()
  {
    for (Iterator i = panels.values().iterator(); i.hasNext();)
    {
      PreferencesPanel pp = (PreferencesPanel) i.next();
      if(pp!=pluginPanel) pp.savePreferences();
    }
    pluginPanel.savePreferences();
    if(Start.applet)backend.send(new InfoQuery("set",new IQPrivate(new nu.fw.jeti.applet.JetiPrivatePreferencesExtension(new Preferences()))));
    else Preferences.save();
  }
View Full Code Here

Examples of org.eclipse.m2e.wtp.preferences.IMavenWtpPreferencesManager.savePreferences()

        enablerComposite.savePreferences();
      }
    }
   
    if(!newPreferences.equals(preferences)) {
      preferencesManager.savePreferences(newPreferences, getProject());

      boolean res = MessageDialog.openQuestion(getShell(), Messages.MavenWtpPreferencePage_Maven_JavaEE_Integration_Settings, //
          Messages.MavenWtpPreferencePage_Update_Projects_After_Preference_Changes);
      if(res) {
        updateImpactedProjects();
View Full Code Here

Examples of org.openstreetmap.josm.gui.preferences.display.GPXSettingsPanel.savePreferences()

            // save preferences for all layers
            boolean f = false;
            if (layer instanceof GpxLayer) {
                f = ((GpxLayer) layer).isLocalFile();
            }
            panel.savePreferences(layer.getName(), f);
        }
        Main.map.repaint();
    }

}
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.