View | Details | Raw Unified | Return to bug 240701
Collapse All | Expand All

(-)src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutWizard.java (-7 / +7 lines)
Lines 33-45 Link Here
33
 */
33
 */
34
public class CheckoutWizard extends Wizard implements ICVSWizard, INewWizard {
34
public class CheckoutWizard extends Wizard implements ICVSWizard, INewWizard {
35
	
35
	
36
	private RepositorySelectionPage locationPage;
36
	protected RepositorySelectionPage locationPage;
37
	private ConfigurationWizardMainPage createLocationPage;
37
	protected ConfigurationWizardMainPage createLocationPage;
38
	private ModuleSelectionPage modulePage;
38
	protected ModuleSelectionPage modulePage;
39
	private CheckoutAsWizard wizard;
39
	protected CheckoutAsWizard wizard;
40
	private ICVSRepositoryLocation location;
40
	protected ICVSRepositoryLocation location;
41
	private boolean isNewLocation;
41
	protected boolean isNewLocation;
42
	private CVSWizardPage dummyPage;
42
	protected CVSWizardPage dummyPage;
43
	
43
	
44
	public CheckoutWizard() {
44
	public CheckoutWizard() {
45
		setWindowTitle(CVSUIMessages.CheckoutWizard_0); 
45
		setWindowTitle(CVSUIMessages.CheckoutWizard_0); 
(-)src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java (-5 / +5 lines)
Lines 41-51 Link Here
41
	}
41
	}
42
	
42
	
43
	
43
	
44
	private TableViewer table;
44
	protected TableViewer table;
45
	private Button useExistingRepo;
45
	protected Button useExistingRepo;
46
	private Button useNewRepo;
46
	protected Button useNewRepo;
47
	
47
	
48
	private ICVSRepositoryLocation result;
48
	protected ICVSRepositoryLocation result;
49
	
49
	
50
	String extendedDescription;
50
	String extendedDescription;
51
	
51
	
Lines 142-148 Link Here
142
	/**
142
	/**
143
	 * Initializes states of the controls.
143
	 * Initializes states of the controls.
144
	 */
144
	 */
145
	private void initializeValues() {
145
	protected void initializeValues() {
146
		ICVSRepositoryLocation[] locations = CVSUIPlugin.getPlugin().getRepositoryManager().getKnownRepositoryLocations();
146
		ICVSRepositoryLocation[] locations = CVSUIPlugin.getPlugin().getRepositoryManager().getKnownRepositoryLocations();
147
		AdaptableList input = new AdaptableList(locations);
147
		AdaptableList input = new AdaptableList(locations);
148
		table.setInput(input);
148
		table.setInput(input);

Return to bug 240701