Package org.apache.geronimo.st.ui.commands

Examples of org.apache.geronimo.st.ui.commands.SetConsoleLogLevelCommand


    info.addSelectionListener(new SelectionListener() {

      public void widgetSelected(SelectionEvent e) {
        if (info.getSelection()) {
          execute(new SetConsoleLogLevelCommand(server, GeronimoServerDelegate.CONSOLE_INFO));
        }
      }

      public void widgetDefaultSelected(SelectionEvent e) {
      }
    });

    debug.addSelectionListener(new SelectionListener() {

      public void widgetSelected(SelectionEvent e) {
        if (debug.getSelection()) {
          execute(new SetConsoleLogLevelCommand(server, GeronimoServerDelegate.CONSOLE_DEBUG));
        }
      }

      public void widgetDefaultSelected(SelectionEvent e) {
      }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.st.ui.commands.SetConsoleLogLevelCommand

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.