blob: e72dabb66c08d267b6186266cf4a5a718634a46e [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
Contributors:
IBM Corporation - Initial implementation
**********************************************************************/
package org.eclipse.ui.internal.dialogs;
import org.eclipse.jface.action.Action;
import org.eclipse.ui.internal.WorkbenchMessages;
/**
* Global copy action for the welcome editor.
*/
public class WelcomeEditorCopyAction extends Action {
private WelcomeEditor editorPart;
public WelcomeEditorCopyAction(WelcomeEditor editor) {
editorPart = editor;
setText(WorkbenchMessages.getString("WelcomeEditor.copy.text"));
}
public void run() {
editorPart.getCurrentText().copy();
}
}