Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java
index e5ff6070d..e10fa52ed 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointOrganizer.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -14,47 +14,47 @@ import org.eclipse.debug.ui.IBreakpointOrganizerDelegate;
import org.eclipse.jface.resource.ImageDescriptor;
/**
- * A breakpoint organizer is represents a breakpoint organizer delegate in
- * the breakpoint view. Clients can retrieve the current active breakpoint
- * organizers from the breakpoint view's presentation context using the
+ * A breakpoint organizer is represents a breakpoint organizer delegate in
+ * the breakpoint view. Clients can retrieve the current active breakpoint
+ * organizers from the breakpoint view's presentation context using the
* {@link IBreakpointUIConstants#PROP_BREAKPOINTS_ORGANIZERS} property.
* <p>
* This interface is not intended to be implemented. Clients contributing a breakpoint
- * organizer are intended to implement <code>IBreakpointOrganizerDelegate</code>.
+ * organizer are intended to implement <code>IBreakpointOrganizerDelegate</code>.
* </p>
* @noimplement This interface is not intended to be implemented by clients.
* @since 3.6 (internal interface since 3.1)
- *
+ *
* @see IBreakpointUIConstants#PROP_BREAKPOINTS_ORGANIZERS
* @see org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext
*/
public interface IBreakpointOrganizer extends IBreakpointOrganizerDelegate {
-
+
/**
* Returns a label for this breakpoint organizer.
- *
+ *
* @return a label for this breakpoint organizer
*/
public String getLabel();
-
+
/**
* Returns an image descriptor for this breakpoint organizer or <code>null</code>.
- *
+ *
* @return an image descriptor for this breakpoint organizer or <code>null</code>
*/
public ImageDescriptor getImageDescriptor();
-
+
/**
* Returns a unique identifier for this breakpoint organizer.
- *
+ *
* @return a unique identifier for this breakpoint organizer
*/
public String getIdentifier();
-
+
/**
* Returns the label for breakpoints that do not fall into a category
* for this organizer.
- *
+ *
* @return label for breakpoints that do not fall into a category
* for this organizer
*/

Back to the top