blob: 4d66a1ccc45f4f1abe81b3c29fe8787ce6c1397d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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 org.eclipse.jdt.internal.debug.ui.actions;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jdt.internal.debug.ui.launcher.IClasspathViewer;
import org.eclipse.jdt.launching.IRuntimeClasspathEntry;
import org.eclipse.jdt.launching.JavaRuntime;
import org.eclipse.jdt.ui.wizards.BuildPathDialogAccess;
import org.eclipse.jface.action.IAction;
/**
* Adds an internal jar to the runtime class path.
*/
public class AddJarAction extends RuntimeClasspathAction {
public AddJarAction(IClasspathViewer viewer) {
super(ActionMessages.AddJarAction_Add__JARs_1, viewer);
}
/**
* Prompts for a jar to add.
*
* @see IAction#run()
*/
@Override
public void run() {
IPath[] paths = BuildPathDialogAccess.chooseJAREntries(getShell(), null, getSelectedJars());
if (paths != null && paths.length > 0) {
IRuntimeClasspathEntry[] res= new IRuntimeClasspathEntry[paths.length];
for (int i= 0; i < res.length; i++) {
IResource elem= ResourcesPlugin.getWorkspace().getRoot().getFile(paths[i]);
res[i]= JavaRuntime.newArchiveRuntimeClasspathEntry(elem);
}
getViewer().addEntries(res);
}
}
/**
* Returns a list of resources of currently selected jars
* @return the selected jar paths
*/
protected IPath[] getSelectedJars() {
List<IRuntimeClasspathEntry> list = getEntriesAsList();
List<IPath> jars = new ArrayList<>();
Iterator<IRuntimeClasspathEntry> iter = list.iterator();
while (iter.hasNext()) {
IRuntimeClasspathEntry entry = iter.next();
if (entry.getType() == IRuntimeClasspathEntry.ARCHIVE) {
IResource res = entry.getResource();
if (res != null && res instanceof IFile) {
jars.add(res.getFullPath());
}
}
}
return jars.toArray(new IPath[jars.size()]);
}
@Override
protected int getActionType() {
return ADD;
}
}