### Eclipse Workspace Patch 1.0 #P org.eclipse.team.cvs.ui Index: src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutWizard.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutWizard.java,v retrieving revision 1.23 diff -u -r1.23 CheckoutWizard.java --- src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutWizard.java 29 Mar 2006 17:13:55 -0000 1.23 +++ src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutWizard.java 14 Jul 2008 17:13:26 -0000 @@ -33,13 +33,13 @@ */ public class CheckoutWizard extends Wizard implements ICVSWizard, INewWizard { - private RepositorySelectionPage locationPage; - private ConfigurationWizardMainPage createLocationPage; - private ModuleSelectionPage modulePage; - private CheckoutAsWizard wizard; - private ICVSRepositoryLocation location; - private boolean isNewLocation; - private CVSWizardPage dummyPage; + protected RepositorySelectionPage locationPage; + protected ConfigurationWizardMainPage createLocationPage; + protected ModuleSelectionPage modulePage; + protected CheckoutAsWizard wizard; + protected ICVSRepositoryLocation location; + protected boolean isNewLocation; + protected CVSWizardPage dummyPage; public CheckoutWizard() { setWindowTitle(CVSUIMessages.CheckoutWizard_0); Index: src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java,v retrieving revision 1.29 diff -u -r1.29 RepositorySelectionPage.java --- src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java 4 Apr 2008 15:04:59 -0000 1.29 +++ src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java 14 Jul 2008 17:13:26 -0000 @@ -41,11 +41,11 @@ } - private TableViewer table; - private Button useExistingRepo; - private Button useNewRepo; + protected TableViewer table; + protected Button useExistingRepo; + protected Button useNewRepo; - private ICVSRepositoryLocation result; + protected ICVSRepositoryLocation result; String extendedDescription; @@ -142,7 +142,7 @@ /** * Initializes states of the controls. */ - private void initializeValues() { + protected void initializeValues() { ICVSRepositoryLocation[] locations = CVSUIPlugin.getPlugin().getRepositoryManager().getKnownRepositoryLocations(); AdaptableList input = new AdaptableList(locations); table.setInput(input);