public interface IClasspathContainerPage extends IWizardPage
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.jdt.ui.classpathContainerPage
).
Clients implementing this interface may subclass from
org.eclipse.jface.wizard.WizardPage
.
IClasspathContainerPageExtension
to get additional context
before this page is opened.Modifier and Type | Method and Description |
---|---|
boolean |
finish()
Called when the classpath container wizard is closed by selecting
the finish button.
|
IClasspathEntry |
getSelection()
Returns the edited or created classpath container entry.
|
void |
setSelection(IClasspathEntry containerEntry)
Sets the classpath container entry to be edited or
null
if a new entry should be created. |
canFlipToNextPage, getName, getNextPage, getPreviousPage, getWizard, isPageComplete, setPreviousPage, setWizard
createControl, dispose, getControl, getDescription, getErrorMessage, getImage, getMessage, getTitle, performHelp, setDescription, setImageDescriptor, setTitle, setVisible
boolean finish()
true
, the wizard will close.IClasspathEntry getSelection()
null
if no classpath container entry exists.
The returned classpath entry is of kind IClasspathEntry.CPE_CONTAINER
.void setSelection(IClasspathEntry 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 IClasspathEntry.CPE_CONTAINER
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.