Package org.cloudfoundry.ide.eclipse.server.ui.internal.actions

Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.actions.DebugApplicationEditorAction


  }

  protected void connectToDebugger() {
    DebugCommand command = new DebugCommandBuilder(new IModule[] { module }, cloudServer).getDebugCommand(
        ApplicationAction.CONNECT_TO_DEBUGGER, new ApplicationDetailsDebugListener());
    new DebugApplicationEditorAction(editorPage, command).run();
  }
View Full Code Here


   * selected action, or null otherwise
   */
  protected void debugApplication(ApplicationAction restartAction) {
    DebugCommand command = new DebugCommandBuilder(new IModule[] { module }, cloudServer).getDebugCommand(
        restartAction, new ApplicationDetailsDebugListener());
    new DebugApplicationEditorAction(editorPage, command).run();
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.ui.internal.actions.DebugApplicationEditorAction

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.