|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2000, 2006 IBM Corporation and others. |
2 |
* Copyright (c) 2000, 2009 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 12-44
Link Here
|
| 12 |
package org.eclipse.team.internal.ccvs.ui.wizards; |
12 |
package org.eclipse.team.internal.ccvs.ui.wizards; |
| 13 |
|
13 |
|
| 14 |
import java.io.File; |
14 |
import java.io.File; |
| 15 |
import java.util.ArrayList; |
15 |
import java.util.*; |
| 16 |
import java.util.Arrays; |
|
|
| 17 |
import java.util.List; |
16 |
import java.util.List; |
| 18 |
|
17 |
|
| 19 |
import org.eclipse.core.resources.IProject; |
18 |
import org.eclipse.core.resources.IProject; |
| 20 |
import org.eclipse.core.resources.ResourcesPlugin; |
19 |
import org.eclipse.core.resources.ResourcesPlugin; |
| 21 |
import org.eclipse.core.runtime.CoreException; |
20 |
import org.eclipse.core.runtime.*; |
| 22 |
import org.eclipse.core.runtime.IPath; |
|
|
| 23 |
import org.eclipse.core.runtime.IStatus; |
| 24 |
import org.eclipse.core.runtime.Path; |
| 25 |
import org.eclipse.core.runtime.Platform; |
| 26 |
import org.eclipse.jface.dialogs.Dialog; |
21 |
import org.eclipse.jface.dialogs.Dialog; |
| 27 |
import org.eclipse.jface.dialogs.IDialogSettings; |
22 |
import org.eclipse.jface.dialogs.IDialogSettings; |
| 28 |
import org.eclipse.jface.resource.ImageDescriptor; |
23 |
import org.eclipse.jface.resource.ImageDescriptor; |
| 29 |
import org.eclipse.osgi.util.NLS; |
24 |
import org.eclipse.osgi.util.NLS; |
| 30 |
import org.eclipse.swt.SWT; |
25 |
import org.eclipse.swt.SWT; |
| 31 |
import org.eclipse.swt.events.ModifyEvent; |
26 |
import org.eclipse.swt.events.*; |
| 32 |
import org.eclipse.swt.events.ModifyListener; |
|
|
| 33 |
import org.eclipse.swt.events.SelectionAdapter; |
| 34 |
import org.eclipse.swt.events.SelectionEvent; |
| 35 |
import org.eclipse.swt.events.SelectionListener; |
| 36 |
import org.eclipse.swt.layout.GridData; |
27 |
import org.eclipse.swt.layout.GridData; |
| 37 |
import org.eclipse.swt.widgets.Button; |
28 |
import org.eclipse.swt.widgets.*; |
| 38 |
import org.eclipse.swt.widgets.Combo; |
|
|
| 39 |
import org.eclipse.swt.widgets.Composite; |
| 40 |
import org.eclipse.swt.widgets.DirectoryDialog; |
| 41 |
import org.eclipse.swt.widgets.Label; |
| 42 |
import org.eclipse.team.internal.ccvs.core.ICVSRemoteFolder; |
29 |
import org.eclipse.team.internal.ccvs.core.ICVSRemoteFolder; |
| 43 |
import org.eclipse.team.internal.ccvs.ui.CVSUIMessages; |
30 |
import org.eclipse.team.internal.ccvs.ui.CVSUIMessages; |
| 44 |
import org.eclipse.team.internal.ccvs.ui.IHelpContextIds; |
31 |
import org.eclipse.team.internal.ccvs.ui.IHelpContextIds; |
|
Lines 155-161
Link Here
|
| 155 |
private Composite createUserSpecifiedProjectLocationGroup(Composite parent, boolean enabled) { |
142 |
private Composite createUserSpecifiedProjectLocationGroup(Composite parent, boolean enabled) { |
| 156 |
|
143 |
|
| 157 |
// This group needs 3 columns |
144 |
// This group needs 3 columns |
| 158 |
Composite projectGroup = createComposite(parent, 3, false); |
145 |
Composite projectGroup = createComposite(parent, 3, true); |
| 159 |
|
146 |
|
| 160 |
// location label |
147 |
// location label |
| 161 |
locationLabel = new Label(projectGroup, SWT.NONE); |
148 |
locationLabel = new Label(projectGroup, SWT.NONE); |