Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-02-28 14:41:28 +0000
committerDani Megert2012-02-28 14:41:28 +0000
commit93c9ad0c488c7cdbbdb0c4d325452afe473286d5 (patch)
tree4d3be78067535e604e9c2b583eda179bc03eb453
parenteb45436e1ee334a41ac502f87d306b7e45e69e4f (diff)
downloadeclipse.platform.team-93c9ad0c488c7cdbbdb0c4d325452afe473286d5.tar.gz
eclipse.platform.team-93c9ad0c488c7cdbbdb0c4d325452afe473286d5.tar.xz
eclipse.platform.team-93c9ad0c488c7cdbbdb0c4d325452afe473286d5.zip
Document that IScmUrlImportWizardPage.getSelection() can return 'null'v20120228-1441
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/IScmUrlImportWizardPage.java10
1 files changed, 5 insertions, 5 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 733c3ce03..17a460aaf 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
@@ -41,12 +41,12 @@ public interface IScmUrlImportWizardPage extends IWizardPage {
public boolean finish();
/**
- * Return the import descriptions for the page. The descriptions may differ
- * from those initially set using
- * {@link #setSelection(ScmUrlImportDescription[])} if the user modified
- * import configuration.
+ * Return the import descriptions for the page. The descriptions may differ from those initially
+ * set using {@link #setSelection(ScmUrlImportDescription[])} if the user modified the import
+ * configuration.
*
- * @return the SCM URLs descriptions for the page.
+ * @return the SCM URLs descriptions for the page or <code>null</code> if no selection has been
+ * set
*/
public ScmUrlImportDescription[] getSelection();

Back to the top