Examples of ToggleBreakpointAction


Examples of org.eclipse.debug.ui.actions.ToggleBreakpointAction

                "ContentAssistTip.", this, ISourceViewer.CONTENTASSIST_CONTEXT_INFORMATION); //$NON-NLS-1$
        a
                .setActionDefinitionId(ITextEditorActionDefinitionIds.CONTENT_ASSIST_CONTEXT_INFORMATION);
        setAction("ContentAssistTip", a);

        a = new ToggleBreakpointAction(getSite().getPart() , null, getVerticalRuler());
        setAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK, a);

    }
View Full Code Here

Examples of org.eclipse.debug.ui.actions.ToggleBreakpointAction

                "ContentAssistTip.", this, ISourceViewer.CONTENTASSIST_CONTEXT_INFORMATION); //$NON-NLS-1$
        a
                .setActionDefinitionId(ITextEditorActionDefinitionIds.CONTENT_ASSIST_CONTEXT_INFORMATION);
        setAction("ContentAssistTip", a);

        a = new ToggleBreakpointAction(getSite().getPart() , null, getVerticalRuler());
        setAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK, a);

    }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.debug.ToggleBreakpointAction

    /*
     * Make double-clicking on the ruler toggle a breakpoint instead of
     * toggling a bookmark. For lines where a breakpoint won't be created,
     * create a bookmark through the contributed RulerDoubleClick action.
     */
    setAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK, new ToggleBreakpointAction(this, getVerticalRuler(), getAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK)));
  }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.debug.ToggleBreakpointAction

    markAsStateDependentAction(StructuredTextEditorActionConstants.ACTION_NAME_FORMAT_ACTIVE_ELEMENTS, true);
    markAsSelectionDependentAction(StructuredTextEditorActionConstants.ACTION_NAME_FORMAT_ACTIVE_ELEMENTS, true);

    // StructuredTextEditor Action - add breakpoints (falling back to the
    // current double-click if they can't be added)
    action = new ToggleBreakpointAction(this, getVerticalRuler());
    setAction(ActionDefinitionIds.TOGGLE_BREAKPOINTS, action);
    // StructuredTextEditor Action - manage breakpoints
    action = new ManageBreakpointAction(this, getVerticalRuler());
    setAction(ActionDefinitionIds.MANAGE_BREAKPOINTS, action);
    // StructuredTextEditor Action - edit breakpoints
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.debug.ToggleBreakpointAction

    /*
     * Make double-clicking on the ruler toggle a breakpoint instead of
     * toggling a bookmark. For lines where a breakpoint won't be created,
     * create a bookmark through the contributed RulerDoubleClick action.
     */
    setAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK, new ToggleBreakpointAction(this, getVerticalRuler(), getAction(ITextEditorActionConstants.RULER_DOUBLE_CLICK)));
  }
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.debug.ToggleBreakpointAction

    markAsStateDependentAction(StructuredTextEditorActionConstants.ACTION_NAME_FORMAT_ACTIVE_ELEMENTS, true);
    markAsSelectionDependentAction(StructuredTextEditorActionConstants.ACTION_NAME_FORMAT_ACTIVE_ELEMENTS, true);

    // StructuredTextEditor Action - add breakpoints (falling back to the
    // current double-click if they can't be added)
    action = new ToggleBreakpointAction(this, getVerticalRuler());
    setAction(ActionDefinitionIds.TOGGLE_BREAKPOINTS, action);
    // StructuredTextEditor Action - manage breakpoints
    action = new ManageBreakpointAction(this, getVerticalRuler());
    setAction(ActionDefinitionIds.MANAGE_BREAKPOINTS, action);
    // StructuredTextEditor Action - edit breakpoints
View Full Code Here

Examples of org.springframework.ide.eclipse.metadata.actions.ToggleBreakPointAction

  private void createActions() {
    openBrowserAction = new OpenInBrowserAction(this, labelProvider);
    mainViewer.addSelectionChangedListener(openBrowserAction);
    javaEditorAction = new OpenInJavaEditorAction();
    mainViewer.addSelectionChangedListener(javaEditorAction);
    breakpointAction = new ToggleBreakPointAction(this);
    mainViewer.addSelectionChangedListener(breakpointAction);
    linkingAction = new ToggleLinkingAction(this);
    orientationActions = new ToggleOrientationAction[] {
        new ToggleOrientationAction(this, SWT.HORIZONTAL),
        new ToggleOrientationAction(this, SWT.VERTICAL) };
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.