Package org.eclipse.egit.ui.internal.sharing

Examples of org.eclipse.egit.ui.internal.sharing.SharingWizard


    final IProject projectToShare = ResourcesPlugin.getWorkspace()
        .getRoot().getProject(projectName);
    IWorkbench workbench = HandlerUtil.getActiveWorkbenchWindow(event)
        .getWorkbench();

    final SharingWizard wizard = new SharingWizard();
    wizard.init(workbench, projectToShare);
    final Shell shell = HandlerUtil.getActiveShell(event);
    WizardDialog wizardDialog = new WizardDialog(shell, wizard);
    wizardDialog.setHelpAvailable(false);
    wizardDialog.open();
    return null;
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.sharing.SharingWizard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.