Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.java
index f73c9f858..44742c078 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/ISourceContainerBrowser.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
*******************************************************************************/
@@ -40,43 +40,43 @@ public interface ISourceContainerBrowser {
/**
* Creates and returns new source containers to add to the given
* source lookup director.
- *
+ *
* @param shell the shell to use to parent any dialogs
* @param director the director the new containers will be added to
* @return the new source containers to add
*/
public ISourceContainer[] addSourceContainers(Shell shell, ISourceLookupDirector director);
-
+
/**
* Returns whether this browser can add any source containers to the
* given source lookup director.
- *
+ *
* @param director source lookup director to potentially add source
* containers to
* @return whether this browser can add any source containers to the
* given source lookup director
*/
public boolean canAddSourceContainers(ISourceLookupDirector director);
-
+
/**
* Edits and returns source containers to replace the given source
* containers.
- *
+ *
* @param shell the shell to use to parent any dialogs
* @param director the director the new containers will be added to
* @param containers the source containers to be edited
* @return the replacement source containers
*/
public ISourceContainer[] editSourceContainers(Shell shell, ISourceLookupDirector director, ISourceContainer[] containers);
-
+
/**
* Returns whether this browser can edit the given source containers.
- *
+ *
* @param director source lookup director to potentially edit source
* containers for
* @param containers the containers to edit
* @return whether this browser can edit the given source containers
*/
- public boolean canEditSourceContainers(ISourceLookupDirector director, ISourceContainer[] containers);
-
+ public boolean canEditSourceContainers(ISourceLookupDirector director, ISourceContainer[] containers);
+
}

Back to the top