|
From: <caw...@us...> - 2007-07-18 21:48:12
|
Revision: 2794
http://svn.sourceforge.net/rubyeclipse/?rev=2794&view=rev
Author: cawilliams
Date: 2007-07-18 14:48:08 -0700 (Wed, 18 Jul 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/IContextMenuConstants.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/IContextMenuConstants.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/IContextMenuConstants.java 2007-07-18 21:46:50 UTC (rev 2793)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/IContextMenuConstants.java 2007-07-18 21:48:08 UTC (rev 2794)
@@ -1,6 +1,8 @@
package org.rubypeople.rdt.ui;
+import org.eclipse.ui.navigator.ICommonMenuConstants;
+
public interface IContextMenuConstants {
/**
* Type hierarchy view part: pop-up menu target ID for type hierarchy viewer
@@ -25,4 +27,28 @@
* @since 2.0
*/
public static final String TARGET_ID_SUBTYPES_VIEW= RubyUI.ID_TYPE_HIERARCHY + ".subtypes"; //$NON-NLS-1$
+
+ /**
+ * Pop-up menu: name of group for show actions (value <code>"group.show"</code>).
+ * <p>
+ * Examples for show actions are:
+ * <ul>
+ * <li>Show in Navigator</li>
+ * <li>Show in Type Hierarchy</li>
+ * </ul>
+ * </p>
+ */
+ public static final String GROUP_SHOW= ICommonMenuConstants.GROUP_SHOW;
+
+ /**
+ * Pop-up menu: name of group for new actions (value <code>"group.new"</code>).
+ * <p>
+ * Examples for new actions are:
+ * <ul>
+ * <li>Create new class</li>
+ * <li>Create new interface</li>
+ * </ul>
+ * </p>
+ */
+ public static final String GROUP_NEW= ICommonMenuConstants.GROUP_NEW;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|