Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2002-06-06 19:55:51 +0000
committerJean Michel-Lemieux2002-06-06 19:55:51 +0000
commit97062860c12175a51bd7692de5bddedb74816931 (patch)
tree0ef1994acff2e368803b4a89e6b34a9b30777efa
parent438c18dccff15f05b81a0f1a584a22fefb6c6bc3 (diff)
downloadeclipse.platform.team-97062860c12175a51bd7692de5bddedb74816931.tar.gz
eclipse.platform.team-97062860c12175a51bd7692de5bddedb74816931.tar.xz
eclipse.platform.team-97062860c12175a51bd7692de5bddedb74816931.zip
2.0 Fix Pass 3
PR 18560: next button not enabled for disconnecting PR 18851: finish not enabled for creating new site Reviewed by Mike Valenta
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/target/ConfigureTargetWizard.java32
1 files changed, 6 insertions, 26 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/target/ConfigureTargetWizard.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/target/ConfigureTargetWizard.java
index 4b5191dd1..e3ede870a 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/target/ConfigureTargetWizard.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/target/ConfigureTargetWizard.java
@@ -68,8 +68,6 @@ public class ConfigureTargetWizard extends Wizard implements IConfigurationWizar
public static final String MAPPING_PAGE_NAME = "mapping-page"; //$NON-NLS-1$
protected SiteSelectionPage siteSelectionPage = null;
- protected IWizardPage firstTargetPage = null;
-
/**
* @see ConfigureProjectWizard#getExtensionPoint()
*/
@@ -108,7 +106,6 @@ public class ConfigureTargetWizard extends Wizard implements IConfigurationWizar
public void addPages() {
Site[] sites = TargetManager.getSites();
AdaptableList wizards = getAvailableWizards();
- setWindowTitle(getWizardWindowTitle());
if(sites.length > 0 && project != null) {
TargetProvider provider = null;
@@ -153,29 +150,10 @@ public class ConfigureTargetWizard extends Wizard implements IConfigurationWizar
}
public IWizardPage getNextPage(IWizardPage page) {
- // This is what we really want to do, but will have to rework the
- // target wizards first.
- // if(getPage(page.getName()) != null) {
- // // this is one of our pages
- // // 1. site selection
- // // 2. target selection
- // // 3. mapping
- // } else {
- // // not one of our pages, is a target specific page
- // IWizardPage nextPage;
- // if(wizard != null) {
- // nextPage = wizard.getNextPage(page);
- // } else {
- // nextPage = mainPage.getSelectedWizard().getNextPage(page);
- // }
- // if(nextPage != null) {
- // return nextPage;
- // } else {
- // MappingSelectionPage mappingPage = getMappingPage();
- // mappingPage.setPreviousPage(page);
- // }
- // }
if(page == siteSelectionPage) {
+ if(siteSelectionPage.isDisconnect()) {
+ return null;
+ }
if(siteSelectionPage.getSite() != null) {
mappingPage.setSite(siteSelectionPage.getSite());
mappingPage.setPreviousPage(page);
@@ -205,8 +183,10 @@ public class ConfigureTargetWizard extends Wizard implements IConfigurationWizar
}
return false;
} else if(currentPage == siteSelectionPage) {
- if(siteSelectionPage.getSite() != null) {
+ if(siteSelectionPage.getSite() != null || siteSelectionPage.isDisconnect()) {
return true;
+ } else {
+ return false;
}
}

Back to the top