Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-03-07 15:06:28 +0000
committerMike Rennie2012-03-07 15:06:28 +0000
commitd2702f4b57fe1415babcd03a3332b30996d40fa3 (patch)
treeeb98890f037708f63522b113c8352c1b16fff93a
parentfd86c40a8f890e9fe78a6333a9ff84a1c25274ea (diff)
downloadeclipse.platform.debug-d2702f4b57fe1415babcd03a3332b30996d40fa3.tar.gz
eclipse.platform.debug-d2702f4b57fe1415babcd03a3332b30996d40fa3.tar.xz
eclipse.platform.debug-d2702f4b57fe1415babcd03a3332b30996d40fa3.zip
Bug 373030 - [breakpoints] Move BreakpointTypesContribution to a public
package - update legal header + doc
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/BreakpointTypesContribution.java13
1 files changed, 9 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/BreakpointTypesContribution.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/BreakpointTypesContribution.java
index dec47e0cd..b744b40d4 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/BreakpointTypesContribution.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/BreakpointTypesContribution.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 Wind River Systems and others.
+ * Copyright (c) 2012 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -60,10 +60,10 @@ import org.eclipse.ui.services.IServiceLocator;
* </p>
* <p>
* Clients may refer to this class in plug-in XML. This class
- * is not intended to be subclassed.
+ * is not intended to be sub-classed.
* </p>
* @since 3.8
- * @noextend
+ * @noextend This class is not intended to be sub-classed by clients.
*/
public class BreakpointTypesContribution extends CompoundContributionItem implements IWorkbenchContribution {
@@ -101,6 +101,9 @@ public class BreakpointTypesContribution extends CompoundContributionItem implem
}
};
+ /* (non-Javadoc)
+ * @see org.eclipse.ui.actions.CompoundContributionItem#getContributionItems()
+ */
protected IContributionItem[] getContributionItems() {
IWorkbenchPart part = null;
ISelection selection = null;
@@ -146,8 +149,10 @@ public class BreakpointTypesContribution extends CompoundContributionItem implem
return items;
}
+ /* (non-Javadoc)
+ * @see org.eclipse.ui.menus.IWorkbenchContribution#initialize(org.eclipse.ui.services.IServiceLocator)
+ */
public void initialize(IServiceLocator serviceLocator) {
fServiceLocator = serviceLocator;
}
-
}

Back to the top