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 (value * <code>"org.rubypeople.rdt.ui.TypeHierarchy.typehierarchy"</code>). * * @since 2.0 */ public static final String TARGET_ID_HIERARCHY_VIEW = RubyUI.ID_TYPE_HIERARCHY + ".typehierarchy"; //$NON-NLS-1$ /** * Type hierarchy view part: pop-up menu target ID for supertype hierarchy viewer (value * <code>"org.rubypeople.rdt.ui.TypeHierarchy.supertypes"</code>). * * @since 2.0 */ public static final String TARGET_ID_SUPERTYPES_VIEW = RubyUI.ID_TYPE_HIERARCHY + ".supertypes"; //$NON-NLS-1$ /** * Type hierarchy view part: Pop-up menu target ID for the subtype hierarchy viewer (value * <code>"org.rubypeople.rdt.ui.TypeHierarchy.subtypes"</code>). * * @since 2.0 */ public static final String TARGET_ID_SUBTYPES_VIEW = RubyUI.ID_TYPE_HIERARCHY + ".subtypes"; //$NON-NLS-1$ /** * Type hierarchy view part: pop-up menu target ID for the member viewer (value * <code>"org.rubypeople.rdt.ui.TypeHierarchy.members"</code>). * * @since 2.0 */ public static final String TARGET_ID_MEMBERS_VIEW = RubyUI.ID_TYPE_HIERARCHY + ".members"; //$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> * * @deprecated Use {@link ICommonMenuConstants#GROUP_SHOW} */ 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> * * @deprecated Use {@link ICommonMenuConstants#GROUP_NEW} */ public static final String GROUP_NEW = ICommonMenuConstants.GROUP_NEW; /** * Pop-up menu: name of group for search actions (value <code>"group.search"</code>). * * @deprecated Use {@link ICommonMenuConstants#GROUP_SEARCH} */ public static final String GROUP_SEARCH = ICommonMenuConstants.GROUP_SEARCH; /** * Pop-up menu: name of group for open actions (value <code>"group.open"</code>). * <p> * Examples for open actions are: * <ul> * <li>Open To</li> * <li>Open With</li> * </ul> * </p> * * @deprecated Use {@link ICommonMenuConstants#GROUP_OPEN} */ public static final String GROUP_OPEN = ICommonMenuConstants.GROUP_OPEN; /** * Pop-up menu: name of group for properties actions (value <code>"group.properties"</code>). * * @deprecated Use {@link ICommonMenuConstants#GROUP_PROPERTIES} */ public static final String GROUP_PROPERTIES = ICommonMenuConstants.GROUP_PROPERTIES; /** * Pop-up menu: name of group for reorganize actions (value <code>"group.reorganize"</code>). * * @deprecated Use {@link ICommonMenuConstants#GROUP_REORGANIZE} */ public static final String GROUP_REORGANIZE = ICommonMenuConstants.GROUP_REORGANIZE; /** * Pop-up menu: name of group for build actions (value <code>"group.build"</code>). * * @deprecated Use {@link ICommonMenuConstants#GROUP_BUILD} */ public static final String GROUP_BUILD = ICommonMenuConstants.GROUP_BUILD; /** * Pop-up menu: name of group for goto actions (value <code>"group.goto"</code>). * <p> * Examples for open actions are: * <ul> * <li>Go Into</li> * <li>Go To</li> * </ul> * </p> * * @deprecated Use {@link ICommonMenuConstants#GROUP_GOTO} */ public static final String GROUP_GOTO = ICommonMenuConstants.GROUP_GOTO; }