Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.java103
1 files changed, 0 insertions, 103 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.java b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.java
deleted file mode 100644
index 777088d939..0000000000
--- a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/SetupProjectsWizzard.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/**
- *
- */
-package org.eclipse.wst.jsdt.web.ui;
-
-import java.util.ArrayList;
-import java.util.Dictionary;
-import java.util.Vector;
-
-import org.eclipse.core.resources.IProject;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.viewers.StructuredSelection;
-import org.eclipse.jface.wizard.Wizard;
-
-
-import org.eclipse.ui.IActionDelegate;
-import org.eclipse.ui.INewWizard;
-import org.eclipse.ui.IObjectActionDelegate;
-import org.eclipse.ui.IWorkbench;
-import org.eclipse.ui.IWorkbenchPart;
-import org.eclipse.wst.jsdt.core.IClasspathEntry;
-import org.eclipse.wst.jsdt.core.JavaCore;
-import org.eclipse.wst.jsdt.core.JavaModelException;
-import org.eclipse.wst.jsdt.core.UnimplementedException;
-import org.eclipse.wst.jsdt.internal.core.JavaProject;
-
-import org.eclipse.wst.jsdt.web.core.internal.project.JsWebNature;
-
-/**
- * @author childsb
- *
- */
-public class SetupProjectsWizzard implements IObjectActionDelegate, IActionDelegate {
-
- Object[] fTarget;
-
- public void setActivePart(IAction action, IWorkbenchPart targetPart) {
- throw new UnimplementedException("setActivePart(IAction action, IWorkbenchPart targetPart)");
- }
-
- public void run(IAction action) {
- if(fTarget==null) return;
-
- for(int i=0;i<fTarget.length;i++) {
- if(fTarget[i] instanceof IProject) {
- IProject project = (IProject)fTarget[i];
-
- if(!JsWebNature.hasNature(project)) {
- JsWebNature nature = new JsWebNature(project,null);
- try {
- nature.configure();
-
- } catch (CoreException ex) {
- // TODO Auto-generated catch block
- ex.printStackTrace();
- }
- }else {
- JavaProject jp = (JavaProject)JavaCore.create(project);
- IClasspathEntry[] rawClasspath = null;
- try {
- rawClasspath = jp.getRawClasspath();
- } catch (JavaModelException ex1) {
- // TODO Auto-generated catch block
- ex1.printStackTrace();
- }
-
-
- /* see if project has web cp entry and if it does leave */
- for(int k = 0;rawClasspath!=null && k<rawClasspath.length;k++) {
- if(rawClasspath[k].getPath().equals(JsWebNature.VIRTUAL_BROWSER_CLASSPATH)) {
- return;
- }
- }
- JsWebNature nature = new JsWebNature(project,null);
- try {
- nature.configure();
-
- } catch (CoreException ex) {
- // TODO Auto-generated catch block
- ex.printStackTrace();
- }
- }
-
-
- }
- }
-
- }
-
- public void selectionChanged(IAction action, ISelection selection) {
-
- if(selection instanceof StructuredSelection) {
- fTarget = ((StructuredSelection)selection).toArray();
- }else {
- fTarget = null;
- }
- }
-
-
-} \ No newline at end of file

Back to the top