Package net.bnubot.bot.gui.settings

Examples of net.bnubot.bot.gui.settings.GlobalConfigurationFrame


        Out.addOutputLogger(new PrintStreamOutputLogger(System.out));
    }

    if(forceConfig) {
      try {
        new GlobalConfigurationFrame();
      } catch(Exception e) {
        Out.exception(e);
        String error = "There was an error initializing the configuraiton window";
        Out.error(Main.class, error);
        System.exit(1);
View Full Code Here


        menuItem = new JMenuItem("Settings");
        menuItem.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            try {
              new GlobalConfigurationFrame();
            } catch (OperationCancelledException e1) {}
          } });
        menu.add(menuItem);

        menuItem = new JMenuItem("Exit");
View Full Code Here

        keys.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            try {
              new GlobalConfigurationFrame(true);
            } catch (OperationCancelledException e1) {
              // User pressed cancel
            }
          }});
      }
View Full Code Here

TOP

Related Classes of net.bnubot.bot.gui.settings.GlobalConfigurationFrame

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.