Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/epf-richtext/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/IBaseRichTextAction.java')
-rw-r--r--extraplugins/epf-richtext/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/IBaseRichTextAction.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/extraplugins/epf-richtext/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/IBaseRichTextAction.java b/extraplugins/epf-richtext/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/IBaseRichTextAction.java
deleted file mode 100644
index 0566ceef0d7..00000000000
--- a/extraplugins/epf-richtext/org.eclipse.epf.richtext/src/org/eclipse/epf/richtext/actions/IBaseRichTextAction.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009 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
- *******************************************************************************/
-//------------------------------------------------------------------------------
-// Copyright (c) 2005, 2006 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 implementation
-//------------------------------------------------------------------------------
-package org.eclipse.epf.richtext.actions;
-
-/**
- * The base interface for a rich text action.
- *
- * @author Kelvin Low
- * @since 1.0
- */
-public interface IBaseRichTextAction {
-
- /**
- * Returns the tool tip for the action.
- *
- * @return the tool tip text
- */
- public String getToolTipText();
-
- /**
- * Sets the tool tip for the action.
- *
- * @param toolTipText
- * the tool tip text
- */
- public void setToolTipText(String toolTipText);
-
- /**
- * Returns the enabled status of the action.
- *
- * @return <code>true</code> if enabled, <code>false</code> if not
- */
- public boolean getEnabled();
-
- /**
- * Enables or disables the action.
- *
- * @param enabled
- * If <code>true</code>, enable the action. if
- * <code>false</code>, disable it
- */
- public void setEnabled(boolean enabled);
-
-}

Back to the top