public interface IJsGlobalScopeContainerPage
Clients should implement this interface and include the name of their
class in an extension contributed to the jdt.ui's classpath container page
extension point (named org.eclipse.wst.jsdt.ui.JsGlobalScopeContainerPage
).
Clients implementing this interface may subclass from
org.eclipse.jface.wizard.WizardPage
.
IJsGlobalScopeContainerPageExtension
to get additional context
before this page is opened.
Provisional API: This class/interface is part of an interim API that is still under development and expected to
change significantly before reaching stability. It is being made available at this early stage to solicit feedback
from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
(repeatedly) as the API evolves.Modifier and Type | Method and Description |
---|---|
boolean |
finish()
Called when the classpath container wizard is closed by selecting
the finish button.
|
IIncludePathEntry |
getSelection()
Returns the edited or created classpath container entry.
|
void |
setSelection(IIncludePathEntry containerEntry)
Sets the classpath container entry to be edited or
null
if a new entry should be created. |
boolean finish()
true
, the wizard will close.IIncludePathEntry getSelection()
null
if no classpath container entry exists.
The returned classpath entry is of kind IIncludePathEntry.CPE_CONTAINER
.void setSelection(IIncludePathEntry containerEntry)
null
if a new entry should be created.containerEntry
- the classpath entry to edit or null
.
If not null
then the classpath entry must be of
kind IIncludePathEntry.CPE_CONTAINER
Copyright (c) IBM Corp. and others 2000, 2010. All Rights Reserved.