Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java
index eac4412df..2c6cdf1e6 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpointGroups/BreakpointSelectionAction.java
@@ -21,26 +21,26 @@ import org.eclipse.ui.actions.SelectionListenerAction;
*/
public abstract class BreakpointSelectionAction extends SelectionListenerAction {
- private BreakpointsView fView;
+ private BreakpointsView fView;
- /**
- * Constructs an action for the breakpoints view.
- *
- * @param text action name
- * @param view breakpoints view
- */
- public BreakpointSelectionAction(String text, BreakpointsView view) {
- super(text);
- fView = view;
- }
+ /**
+ * Constructs an action for the breakpoints view.
+ *
+ * @param text action name
+ * @param view breakpoints view
+ */
+ public BreakpointSelectionAction(String text, BreakpointsView view) {
+ super(text);
+ fView = view;
+ }
- /**
- * Returns the breakpoints view.
- *
- * @return breakpoints view
- */
- protected BreakpointsView getBreakpointsView() {
- return fView;
- }
+ /**
+ * Returns the breakpoints view.
+ *
+ * @return breakpoints view
+ */
+ protected BreakpointsView getBreakpointsView() {
+ return fView;
+ }
}

Back to the top