public interface ISourceContainerBrowser
Following is an example source container presentation definition
that contributes a source container browser via the
browserClass
attribute.
<extension point="org.eclipse.debug.ui.sourceContainerPresentations"> <sourceContainerPresentation browserClass="org.eclipse.debug.internal.ui.sourcelookup.browsers.ProjectSourceContainerBrowser" containerTypeID="org.eclipse.debug.core.containerType.project" icon="icons/full/obj16/prj_obj.png" id="org.eclipse.debug.ui.containerPresentation.project"> </sourceContainerPresentation> </extension>
Modifier and Type | Method and Description |
---|---|
ISourceContainer[] |
addSourceContainers(Shell shell,
ISourceLookupDirector director)
Creates and returns new source containers to add to the given
source lookup director.
|
boolean |
canAddSourceContainers(ISourceLookupDirector director)
Returns whether this browser can add any source containers to the
given source lookup director.
|
boolean |
canEditSourceContainers(ISourceLookupDirector director,
ISourceContainer[] containers)
Returns whether this browser can edit the given source containers.
|
ISourceContainer[] |
editSourceContainers(Shell shell,
ISourceLookupDirector director,
ISourceContainer[] containers)
Edits and returns source containers to replace the given source
containers.
|
ISourceContainer[] addSourceContainers(Shell shell, ISourceLookupDirector director)
shell
- the shell to use to parent any dialogsdirector
- the director the new containers will be added toboolean canAddSourceContainers(ISourceLookupDirector director)
director
- source lookup director to potentially add source
containers toISourceContainer[] editSourceContainers(Shell shell, ISourceLookupDirector director, ISourceContainer[] containers)
shell
- the shell to use to parent any dialogsdirector
- the director the new containers will be added tocontainers
- the source containers to be editedboolean canEditSourceContainers(ISourceLookupDirector director, ISourceContainer[] containers)
director
- source lookup director to potentially edit source
containers forcontainers
- the containers to edit
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.