/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package org.apache.directory.studio.ldapbrowser.common.actions; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.Transfer; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.ISharedImages; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.texteditor.IWorkbenchActionDefinitionIds; /** * This class implements the Paste Action. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public abstract class PasteAction extends BrowserAction { /** * Creates a new instance of PasteAction. */ public PasteAction() { super(); } /** * {@inheritDoc} */ public ImageDescriptor getImageDescriptor() { return PlatformUI.getWorkbench().getSharedImages().getImageDescriptor( ISharedImages.IMG_TOOL_PASTE ); } /** * {@inheritDoc} */ public String getCommandId() { return IWorkbenchActionDefinitionIds.PASTE; } /** * Retrieve the data of the specified type currently available on the system clipboard. * * @param dataType * the transfer agent for the type of data being requested * @return * the data obtained from the clipboard or null if no data of this type is available */ protected Object getFromClipboard( Transfer dataType ) { Clipboard clipboard = null; try { clipboard = new Clipboard( Display.getCurrent() ); return clipboard.getContents( dataType ); } finally { if ( clipboard != null ) clipboard.dispose(); } } }