use of org.tigris.subversion.subclipse.ui.wizards.CheckoutWizard in project subclipse by subclipse.
the class CheckoutAsAction method execute.
/*
* @see IActionDelegate#run(IAction)
*/
public void execute(IAction action) throws InvocationTargetException, InterruptedException {
if (!WorkspacePathValidator.validateWorkspacePath())
return;
final ISVNRemoteFolder[] folders = getSelectedRemoteFolders();
CheckoutWizard wizard = new CheckoutWizard(folders);
WizardDialog dialog = new ClosableWizardDialog(shell, wizard);
dialog.open();
}
use of org.tigris.subversion.subclipse.ui.wizards.CheckoutWizard in project subclipse by subclipse.
the class CheckoutWizardAction method execute.
/* (non-Javadoc)
* @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#execute(org.eclipse.jface.action.IAction)
*/
public void execute(IAction action) throws InvocationTargetException, InterruptedException {
CheckoutWizard wizard = new CheckoutWizard();
WizardDialog dialog = new ClosableWizardDialog(shell, wizard);
dialog.open();
}
Aggregations