Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.views.documentation.view/src/org/eclipse/papyrus/views/documentation/view/actions/DeleteTableRowAction.java')
-rw-r--r--deprecated/org.eclipse.papyrus.views.documentation.view/src/org/eclipse/papyrus/views/documentation/view/actions/DeleteTableRowAction.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/deprecated/org.eclipse.papyrus.views.documentation.view/src/org/eclipse/papyrus/views/documentation/view/actions/DeleteTableRowAction.java b/deprecated/org.eclipse.papyrus.views.documentation.view/src/org/eclipse/papyrus/views/documentation/view/actions/DeleteTableRowAction.java
deleted file mode 100644
index 4b2a20289e8..00000000000
--- a/deprecated/org.eclipse.papyrus.views.documentation.view/src/org/eclipse/papyrus/views/documentation/view/actions/DeleteTableRowAction.java
+++ /dev/null
@@ -1,56 +0,0 @@
-//------------------------------------------------------------------------------
-// Copyright (c) 2009 Anyware Technologies 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:
-// Anyware Technologies - initial API and implementation
-//------------------------------------------------------------------------------
-package org.eclipse.papyrus.views.documentation.view.actions;
-
-import org.eclipse.epf.richtext.IRichText;
-import org.eclipse.epf.richtext.actions.RichTextAction;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.dialogs.InputDialog;
-import org.eclipse.jface.window.Window;
-import org.eclipse.papyrus.views.documentation.view.DocViewPlugin;
-import org.eclipse.papyrus.views.documentation.view.Messages;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.swt.widgets.Shell;
-
-/**
- * Delete a row from the selected table in the rich text control.
- *
- * @author Jose Alfredo Serrano (Anyware Technologies)
- * @author Jacques LESCOT (Anyware Technologies)
- */
-public class DeleteTableRowAction extends RichTextAction {
-
- /**
- * Creates a new instance.
- */
- public DeleteTableRowAction(IRichText richText) {
- super(richText, IAction.AS_PUSH_BUTTON);
- setImageDescriptor(DocViewPlugin.getDefault().getImageRegistry().getDescriptor("DELETE_ROW")); //$NON-NLS-1$
- setToolTipText(Messages.DeleteTableRowAction_title);
- }
-
- /**
- * Executes the action.
- *
- * @param richText
- * a rich text control
- */
- public void execute(IRichText richText) {
- if (richText != null) {
- Shell parent = Display.getCurrent().getActiveShell();
- InputDialog dialog = new InputDialog(parent, "Delete Row", Messages.DeleteTableRowAction_text, "0", new NumberValidator()); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- if (dialog.open() == Window.OK) {
- richText.executeCommand(CommandConstants.DELETE_TABLE_ROW, dialog.getValue());
- }
- }
- }
-
-} \ No newline at end of file

Back to the top