Package org.eclipse.pde.internal.ui.wizards.plugin

Examples of org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationOperation


    }
   
    public boolean performFinish() {
        final IFieldData data = new AlgorithmData();
        final IProjectProvider provider = new AlgorithmProjectProvider();
        final WorkspaceModifyOperation op = new NewProjectCreationOperation(data, provider, this);
       
        try {
            getContainer().run(true, true, new IRunnableWithProgress() {

                public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
                    monitor.beginTask("Creating Algorithm Project...", 150);
                   
                    try {
                        op.run(new SubProgressMonitor(monitor, 100));
                    } catch (Throwable e) {
                        e.printStackTrace();
                    }
                   
                    File outFile = provider.getProject().getLocation().append(
View Full Code Here

TOP

Related Classes of org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationOperation

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.