Package com.santiagolizardo.beobachter.config

Examples of com.santiagolizardo.beobachter.config.ConfigPersistence.saveProperties()


    configData.setWindowWidth(getWidth());
    configData.setWindowX(getX());
    configData.setWindowY(getY());

    ConfigPersistence configPersistence = new ConfigPersistence();
    configPersistence.saveProperties(this,
        configData.getConfiguration());

    dispose();
    exitCode = 0;
View Full Code Here


            .toString());
        configManager.setFontSize(Integer.parseInt(fontSizeCombo.getValue()
            .toString()));

        ConfigPersistence configPersistence = new ConfigPersistence();
        configPersistence.saveProperties(mainWindow,
            configManager.getConfiguration());

        JInternalFrame[] internalFrames = mainWindow.getDesktop().getAllFrames();
        for (JInternalFrame internalFrame : internalFrames) {
          LogWindow logWindow = (LogWindow) internalFrame;
View Full Code Here

        if (null != selectedLanguage) {
          configManager.setLanguage(selectedLanguage.toString());
        }

        ConfigPersistence configPersistence = new ConfigPersistence();
        configPersistence.saveProperties(mainWindow,
            configManager.getConfiguration());

        dispose();
      }
    });
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.