blob: 436b907b64077c1a6e8c9467f15bfa1751bb8582 [file] [log] [blame]
package org.eclipse.team.internal.ccvs.ui.actions;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import java.util.ArrayList;
import java.util.Iterator;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.dnd.Clipboard;
import org.eclipse.swt.dnd.TextTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.swt.widgets.Display;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
import org.eclipse.team.internal.ui.actions.TeamAction;
public class CopyRepositoryNameAction extends TeamAction {
protected boolean isEnabled() throws TeamException {
return true;
}
public void run(IAction action) {
ICVSRepositoryLocation[] locations = getSelectedRepositories();
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < locations.length; i++) {
buffer.append(locations[i].getLocation());
if (i < locations.length - 1) buffer.append("\n"); //$NON-NLS-1$
}
copyToClipbard(Display.getDefault(), buffer.toString());
}
protected ICVSRepositoryLocation[] getSelectedRepositories() {
ArrayList repositories = null;
if (!selection.isEmpty()) {
repositories = new ArrayList();
Iterator elements = ((IStructuredSelection)selection).iterator();
while (elements.hasNext()) {
Object next = elements.next();
if (next instanceof ICVSRepositoryLocation) {
repositories.add(next);
continue;
}
}
}
if (repositories != null && !repositories.isEmpty()) {
ICVSRepositoryLocation[] result = new ICVSRepositoryLocation[repositories.size()];
repositories.toArray(result);
return result;
}
return new ICVSRepositoryLocation[0];
}
private void copyToClipbard(Display display, String str) {
Clipboard clipboard = new Clipboard(display);
clipboard.setContents(new String[] { str }, new Transfer[] { TextTransfer.getInstance()});
clipboard.dispose();
}
}