Package org.cloudfoundry.ide.eclipse.server.core.internal.debug

Examples of org.cloudfoundry.ide.eclipse.server.core.internal.debug.DebugCommand


  protected boolean isDebugAllowed() {
    return CloudFoundryProperties.isDebugEnabled.testProperty(new IModule[] { module }, cloudServer);
  }

  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


   * @param mode debug mode in which to launch the application
   * @param restartAction update restart or restart, if that is the currently
   * 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.core.internal.debug.DebugCommand

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.