Package org.eclipse.jdt.ui.wizards
Interface IClasspathContainerPageExtension2
-
public interface IClasspathContainerPageExtension2
Classpath container pages that implementIClasspathContainerPage
can optionally implementIClasspathContainerPageExtension2
to return more than one element when creating new containers. If implemented, the methodgetNewContainers()
is used instead of the methodIClasspathContainerPage.getSelection()
to get the newly selected containers.IClasspathContainerPage.getSelection()
is still used for edited elements.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IClasspathEntry[]
getNewContainers()
MethodgetNewContainers()
is called instead ofIClasspathContainerPage.getSelection()
to get the newly added containers.
-
-
-
Method Detail
-
getNewContainers
IClasspathEntry[] getNewContainers()
MethodgetNewContainers()
is called instead ofIClasspathContainerPage.getSelection()
to get the newly added containers.IClasspathContainerPage.getSelection()
is still used to get the edited elements.- Returns:
- the classpath entries created on the page. All returned entries must be on kind
IClasspathEntry.CPE_CONTAINER
-
-