/******************************************************************************* * Copyright (c) 2008 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.ui.internal.ide.commands; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.TextTransfer; import org.eclipse.swt.dnd.Transfer; import org.eclipse.ui.handlers.HandlerUtil; import org.eclipse.ui.internal.ConfigurationInfo; /** * Copies the configuration data present in the about dialog to the clipboard. * * @since 3.4 */ public class CopyConfigToClipboardHandler extends AbstractHandler { /* (non-Javadoc) * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent) */ public Object execute(ExecutionEvent event) { String contents = ConfigurationInfo.getSystemSummary(); Clipboard clipboard = null; try { clipboard = new Clipboard(HandlerUtil.getActiveShell(event) .getDisplay()); clipboard.setContents(new Object[] { contents }, new Transfer[] { TextTransfer.getInstance() }); } finally { if (clipboard != null) { clipboard.dispose(); } } return null; } }