package org.eclipse.cdt.internal.ui; /* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved. */ import org.eclipse.ui.IWorkbenchActionConstants; /** * Constants for menu groups used in context menus for C views and editors. *

* This interface declares constants only; it is not intended to be implemented. *

*/ public interface IContextMenuConstants { /** * Pop-up menu: name of group for goto actions (value "group.open"). *

* Examples for open actions are: *

*

*/ public static final String GROUP_GOTO= "group.goto"; //$NON-NLS-1$ /** * Pop-up menu: name of group for open actions (value "group.open"). *

* Examples for open actions are: *

*

*/ public static final String GROUP_OPEN= "group.open"; //$NON-NLS-1$ /** * Pop-up menu: name of group for show actions (value "group.show"). *

* Examples for show actions are: *

*

*/ public static final String GROUP_SHOW= "group.show"; //$NON-NLS-1$ /** * Pop-up menu: name of group for new actions (value "group.new"). *

* Examples for new actions are: *

*

*/ public static final String GROUP_NEW= "group.new"; //$NON-NLS-1$ /** * Pop-up menu: name of group for build actions (value "group.build"). */ public static final String GROUP_BUILD= "group.build"; //$NON-NLS-1$ /** * Pop-up menu: name of group for reorganize actions (value "group.reorganize"). */ public static final String GROUP_REORGANIZE= IWorkbenchActionConstants.GROUP_REORGANIZE; /** * Pop-up menu: name of group for code generation or refactoring actions ( * value "group.generate"). */ public static final String GROUP_GENERATE= "group.generate"; //$NON-NLS-1$ /** * Pop-up menu: name of group for search actions (value "group.search"). */ public static final String GROUP_SEARCH= "group.search"; //$NON-NLS-1$ /** * Pop-up menu: name of group for additional actions (value "group.additions"). */ public static final String GROUP_ADDITIONS= "additions"; //$NON-NLS-1$ /** * Pop-up menu: name of group for viewer setup actions (value "group.viewerSetup"). */ public static final String GROUP_VIEWER_SETUP= "group.viewerSetup"; //$NON-NLS-1$ /** * Pop-up menu: name of group for properties actions (value "group.properties"). */ public static final String GROUP_PROPERTIES= "group.properties"; //$NON-NLS-1$ }