Package org.eclipse.team.ui
Interface IScmUrlImportWizardPage
- All Superinterfaces:
- IDialogPage,- IWizardPage
IScmUrlImportWizardPage defines the interface that users of the extension
 point 
org.eclipse.team.ui.scmUrlImportPages must implement.
 EXPERIMENTAL. This class has been added as part of a work in
 progress. There is no guarantee that this API will work or that it will
 remain the same. Please do not use this API without consulting with the Team
 team.- Since:
- 3.6
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionbooleanfinish()Called when the import wizard is closed by selecting the finish button.Return the import descriptions for the page.voidsetSelection(ScmUrlImportDescription[] descriptions) Sets the import descriptions to be edited on the page.Methods inherited from interface org.eclipse.jface.dialogs.IDialogPagecreateControl, dispose, getControl, getDescription, getErrorMessage, getImage, getMessage, getTitle, performHelp, setDescription, setImageDescriptor, setTitle, setVisibleMethods inherited from interface org.eclipse.jface.wizard.IWizardPagecanFlipToNextPage, getMinimumPageSize, getName, getNextPage, getPreviousPage, getWizard, isPageComplete, setPreviousPage, setWizard
- 
Field Details- 
ATT_EXTENSION- See Also:
 
- 
ATT_PAGE- See Also:
 
- 
ATT_IMPORTER- See Also:
 
 
- 
- 
Method Details- 
finishboolean finish()Called when the import wizard is closed by selecting the finish button. Implementers may store the page result (new/changed bundle import descriptions in getSelection) here.- Returns:
- if the operation was successful. The wizard will only close when
         trueis returned.
 
- 
getSelectionScmUrlImportDescription[] getSelection()Return the import descriptions for the page. The descriptions may differ from those initially set usingsetSelection(ScmUrlImportDescription[])if the user modified the import configuration.- Returns:
- the SCM URLs descriptions for the page or nullif no selection has been set
 
- 
setSelectionSets the import descriptions to be edited on the page. The passed descriptions can be edited and should be returned ingetSelection().- Parameters:
- descriptions- the SCM URLs descriptions edited on the page.
 
 
-