/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package runjettyrun.tabs.action; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IWorkspaceRoot; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.jdt.core.IJavaProject; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.JavaModelException; import org.eclipse.jdt.launching.IRuntimeClasspathEntry; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.actions.SelectionListenerAction; import runjettyrun.Plugin; import runjettyrun.tabs.classpath.IClasspathViewer; /** * Action used with a runtime classpath viewer. */ public abstract class RuntimeClasspathAction extends SelectionListenerAction { public static final int DEFAULT= 0; public static final int ADD= 1; public static final int REMOVE= 2; public static final int MOVE= 3; private IClasspathViewer fViewer; private Button fButton; private Shell fShell; public RuntimeClasspathAction(String label, IClasspathViewer viewer) { super(label); setViewer(viewer); } /** * Sets the viewer on which this action operates. * * @param viewer the viewer on which this action operates */ public void setViewer(IClasspathViewer viewer) { if (fViewer != null) { fViewer.removeSelectionChangedListener(this); } fViewer = viewer; if (fViewer != null) { fViewer.addSelectionChangedListener(this); update(); } } /** * Returns the viewer on which this action operates. * * @return the viewer on which this action operates */ protected IClasspathViewer getViewer() { return fViewer; } /** * Returns the selected items in the list, in the order they are * displayed. * * @return targets for an action */ protected List<IRuntimeClasspathEntry> getOrderedSelection() { List<IRuntimeClasspathEntry> targets = new ArrayList<IRuntimeClasspathEntry>(); List<?> selection = ((IStructuredSelection)getViewer().getSelection()).toList(); IRuntimeClasspathEntry[] entries = getViewer().getCustomEntries(); for (int i = 0; i < entries.length; i++) { IRuntimeClasspathEntry target = entries[i]; if (selection.contains(target)) { targets.add(target); } } return targets; } /** * Returns a list (copy) of the entries in the viewer */ protected List<IRuntimeClasspathEntry> getCustomEntriesAsList() { IRuntimeClasspathEntry[] entries = getViewer().getCustomEntries(); List<IRuntimeClasspathEntry> list = new ArrayList<IRuntimeClasspathEntry>(entries.length); for (int i = 0; i < entries.length; i++) { list.add(entries[i]); } return list; } /** * Updates the entries to the entries in the given list */ protected void setCustomEntries(List<?> list) { getViewer().setCustomEntries((IRuntimeClasspathEntry[])list.toArray(new IRuntimeClasspathEntry[list.size()])); // update all selection listeners getViewer().setSelection(getViewer().getSelection()); } /** * Returns whether the item at the given index in the list * (visually) is selected. */ protected boolean isIndexSelected(IStructuredSelection selection, int index) { if (selection.isEmpty()) { return false; } Iterator<?> entries = selection.iterator(); List<IRuntimeClasspathEntry> list = getCustomEntriesAsList(); while (entries.hasNext()) { Object next = entries.next(); if (list.indexOf(next) == index) { return true; } } return false; } /** * Sets the button that invokes this action */ public void setButton(Button button) { fButton = button; button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent evt) { run(); } }); fButton.setEnabled(false); } /** * @see IAction#setEnabled(boolean) */ public void setEnabled(boolean enabled) { super.setEnabled(enabled); if (fButton != null) { fButton.setEnabled(enabled); } } /** * Updates the enabled state. */ protected void update() { selectionChanged((IStructuredSelection)getViewer().getSelection()); } /** * Returns the shell used to realize this action's dialog (if any). */ protected Shell getShell() { if (fShell == null) { fShell= getViewer().getShell(); } return fShell; } /** * Sets the shell used to realize this action's dialog (if any). */ public void setShell(Shell shell) { fShell= shell; } /* (non-Javadoc) * @see org.eclipse.ui.actions.SelectionListenerAction#updateSelection(org.eclipse.jface.viewers.IStructuredSelection) */ protected boolean updateSelection(IStructuredSelection selection) { return getViewer().updateSelection(getActionType(), selection); } protected int getActionType() { return DEFAULT; } /** * Returns the possible projects that can be added */ protected List<IJavaProject> getPossibleAdditions() { IJavaProject[] projects; IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot(); try { projects= JavaCore.create(root).getJavaProjects(); } catch (JavaModelException e) { Plugin.logError(e); projects= new IJavaProject[0]; } List<IJavaProject> remaining = new ArrayList<IJavaProject>(); for (int i = 0; i < projects.length; i++) { remaining.add(projects[i]); } List<IJavaProject> alreadySelected = new ArrayList<IJavaProject>(); IRuntimeClasspathEntry[] entries = getViewer().getEntries(); for (int i = 0; i < entries.length; i++) { if (entries[i].getType() == IRuntimeClasspathEntry.PROJECT) { IResource res = root.findMember(entries[i].getPath()); IJavaProject jp = (IJavaProject)JavaCore.create(res); alreadySelected.add(jp); } } remaining.removeAll(alreadySelected); return remaining; } }