Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2011-02-21 17:07:52 +0000
committerTomasz Zarna2011-02-21 17:07:52 +0000
commitdab851bbc39f6c45083c9810c94d12b3df967973 (patch)
tree6c10d2beca4968827ff95f3e0dc301cdbe4b81f1 /bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java
parent712b46d034ebd6e303fc96ae78097047f18e4815 (diff)
downloadeclipse.platform.team-dab851bbc39f6c45083c9810c94d12b3df967973.tar.gz
eclipse.platform.team-dab851bbc39f6c45083c9810c94d12b3df967973.tar.xz
eclipse.platform.team-dab851bbc39f6c45083c9810c94d12b3df967973.zip
bug 330490: API and UI to configure SCM URLs for import -- minor changesbranch_20110112_bug330490
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java23
1 files changed, 14 insertions, 9 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java
index bd01dec6a..ad8fc4cd5 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java
@@ -18,8 +18,8 @@ import org.eclipse.team.core.ScmUrlImportDescription;
* IScmUrlImportWizardPage defines the interface that users of the extension
* point <code>org.eclipse.team.ui.scmUrlImportPages</code> must implement.
*
- * <strong>EXPERIMENTAL</strong>. 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
+ * <strong>EXPERIMENTAL</strong>. 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.
*
@@ -32,7 +32,9 @@ public interface IScmUrlImportWizardPage extends IWizardPage {
public static final String ATT_REPOSITORY = "repository"; //$NON-NLS-1$
/**
- * TODO:
+ * 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.
*
* @return if the operation was successful. The wizard will only close when
* <code>true</code> is returned.
@@ -50,9 +52,9 @@ public interface IScmUrlImportWizardPage extends IWizardPage {
public ScmUrlImportDescription[] getSelection();
/**
- * Sets the import descriptions to be edited on the page.
- * The passed descriptions can be edited and should be
- * returned in {@link #getSelection()}.
+ * Sets the import descriptions to be edited on the page. The passed
+ * descriptions can be edited and should be returned in
+ * {@link #getSelection()}.
*
* @param descriptions
* the SCM URLs descriptions edited on the page.
@@ -60,14 +62,17 @@ public interface IScmUrlImportWizardPage extends IWizardPage {
public void setSelection(ScmUrlImportDescription[] descriptions);
/**
- * TODO:
+ * Sets the RepositoryProviderType for the page.
+ *
* @param provider
+ * to set
*/
public void setProvider(RepositoryProviderType provider);
/**
- * TODO:
- * @return provider
+ * Return the RepositoryProviderType associated with the page.
+ *
+ * @return a RepositoryProviderType for the current page
*/
public RepositoryProviderType getProvider();

Back to the top