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/IBreakpointContainer.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointContainer.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointContainer.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointContainer.java
index f411b73c0..faf6824ac 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointContainer.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/breakpoints/provisional/IBreakpointContainer.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:
* Wind River Systems - initial API and implementation
* Patrick Chuong (Texas Instruments) - Improve usability of the breakpoint view (Bug 238956)
@@ -15,36 +15,36 @@ import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.model.IBreakpoint;
/**
- * Interface representing a breakpoint category container elements in
- * Breakpoints view. Clients which provide custom content in the
+ * Interface representing a breakpoint category container elements in
+ * Breakpoints view. Clients which provide custom content in the
* Breakpoints view may implement this interface to represent container
* elements. This will allow the breakpoints view to properly handle
- * drag-and-drop and copy-paste operations.
- *
+ * drag-and-drop and copy-paste operations.
+ *
* @since 3.6
*/
public interface IBreakpointContainer {
-
+
/**
* Returns the breakpoint organizer that this container uses.
*/
public IBreakpointOrganizer getOrganizer();
/**
- * Returns the breakpoint category that this container is based on.
+ * Returns the breakpoint category that this container is based on.
* @return
*/
public IAdaptable getCategory();
-
+
/**
* Returns whether this breakpoint container contains the given breakpoint.
- *
+ *
* @param breakpoint Breakpoint to check
* @return Returns <code>true</code> if this container contains the
* given breakpoint.
*/
public boolean contains(IBreakpoint breakpoint);
-
+
/**
* Returns the array of breakpoints in this container.
*/

Back to the top