~alex-idereal/bzr-eclipse/1.2.0-patches

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java

  • Committer: Piotr Piastucki
  • Date: 2013-04-16 08:22:48 UTC
  • mfrom: (265.1.2 bzr-eclipse-pp)
  • Revision ID: piotr_piastucki-20130416082248-f5drtepmpz3nzdco
MergeĀ lp:~piastucki/bzr-eclipse/synchronize-action

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
        }
96
96
 
97
97
        public static LocationInputDialog remoteLocationDialog(Shell parentShell, Collection<IBzrBranch> locations, IBzrBranch initialBranch, LocationDialogInfo info, String dialogMessage, boolean remember, boolean force, boolean useExistingDir) {
98
 
                return new LocationInputDialog(parentShell, "Remote location Dialog", dialogMessage, initialBranch, new BaseURIValidator(), locations, info, remember, force, useExistingDir);
 
98
                return new LocationInputDialog(parentShell, "Remote Location", dialogMessage, initialBranch, new BaseURIValidator(), locations, info, remember, force, useExistingDir);
99
99
        }
100
100
 
101
101
        public static LocationInputDialog switchLocationDialog(Shell parentShell, Collection<IBzrBranch> locations, LocationDialogInfo dialogInfo) {
102
 
                return new LocationInputDialog(parentShell, "Switch location", "Please enter the URI to switch to", null, new BaseURIValidator(), locations, dialogInfo, false, true, false);
 
102
                return new LocationInputDialog(parentShell, "Switch Location", "Please enter the URI to switch to", null, new BaseURIValidator(), locations, dialogInfo, false, true, false);
103
103
        }
104
104
 
105
105
        public LocationInputDialog(Shell parentShell, String dialogTitle, String dialogMessage, IBzrBranch initialBranch, IInputValidator validator, Collection<IBzrBranch> locations, LocationDialogInfo info, boolean remember, boolean force, boolean useExistingDir) {