Java Doc for IContextMenuConstants.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » ui » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jdt » org.eclipse.jdt.ui 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.jdt.ui.IContextMenuConstants

IContextMenuConstants
public interface IContextMenuConstants (Code)
Constants for menu groups used in context menus for Java views and editors.

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



Field Summary
final public static  StringGROUP_ADDITIONS
     Pop-up menu: name of group for additional actions (value "additions").
final public static  StringGROUP_BUILD
     Pop-up menu: name of group for build actions (value "group.build").
final public static  StringGROUP_GENERATE
     Pop-up menu: name of group for code generation actions ( value "group.generate").
final public static  StringGROUP_GOTO
     Pop-up menu: name of group for goto actions (value "group.goto").
final public static  StringGROUP_NEW
     Pop-up menu: name of group for new actions (value "group.new").
final public static  StringGROUP_OPEN
     Pop-up menu: name of group for open actions (value "group.open").
final public static  StringGROUP_PROPERTIES
     Pop-up menu: name of group for properties actions (value "group.properties").
final public static  StringGROUP_REORGANIZE
     Pop-up menu: name of group for reorganize actions (value "group.reorganize").
final public static  StringGROUP_SEARCH
     Pop-up menu: name of group for search actions (value "group.search").
final public static  StringGROUP_SHOW
     Pop-up menu: name of group for show actions (value "group.show").
final public static  StringGROUP_SOURCE
     Pop-up menu: name of group for source actions.
final public static  StringGROUP_VIEWER_SETUP
     Pop-up menu: name of group for viewer setup actions (value "group.viewerSetup").
final public static  StringTARGET_ID_HIERARCHY_VIEW
     Type hierarchy view part: pop-up menu target ID for type hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.typehierarchy").
final public static  StringTARGET_ID_MEMBERS_VIEW
     Type hierarchy view part: pop-up menu target ID for the member viewer (value "org.eclipse.jdt.ui.TypeHierarchy.members").
final public static  StringTARGET_ID_SUBTYPES_VIEW
     Type hierarchy view part: Pop-up menu target ID for the subtype hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.subtypes").
final public static  StringTARGET_ID_SUPERTYPES_VIEW
     Type hierarchy view part: pop-up menu target ID for supertype hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.supertypes").



Field Detail
GROUP_ADDITIONS
final public static String GROUP_ADDITIONS(Code)
Pop-up menu: name of group for additional actions (value "additions").



GROUP_BUILD
final public static String GROUP_BUILD(Code)
Pop-up menu: name of group for build actions (value "group.build").



GROUP_GENERATE
final public static String GROUP_GENERATE(Code)
Pop-up menu: name of group for code generation actions ( value "group.generate").



GROUP_GOTO
final public static String GROUP_GOTO(Code)
Pop-up menu: name of group for goto actions (value "group.goto").

Examples for open actions are:

  • Go Into
  • Go To




GROUP_NEW
final public static String GROUP_NEW(Code)
Pop-up menu: name of group for new actions (value "group.new").

Examples for new actions are:

  • Create new class
  • Create new interface




GROUP_OPEN
final public static String GROUP_OPEN(Code)
Pop-up menu: name of group for open actions (value "group.open").

Examples for open actions are:

  • Open To
  • Open With




GROUP_PROPERTIES
final public static String GROUP_PROPERTIES(Code)
Pop-up menu: name of group for properties actions (value "group.properties").



GROUP_REORGANIZE
final public static String GROUP_REORGANIZE(Code)
Pop-up menu: name of group for reorganize actions (value "group.reorganize").



GROUP_SEARCH
final public static String GROUP_SEARCH(Code)
Pop-up menu: name of group for search actions (value "group.search").



GROUP_SHOW
final public static String GROUP_SHOW(Code)
Pop-up menu: name of group for show actions (value "group.show").

Examples for show actions are:

  • Show in Navigator
  • Show in Type Hierarchy




GROUP_SOURCE
final public static String GROUP_SOURCE(Code)
Pop-up menu: name of group for source actions. This is an alias for GROUP_GENERATE to be more consistent with main menu bar structure.
since:
   2.0



GROUP_VIEWER_SETUP
final public static String GROUP_VIEWER_SETUP(Code)
Pop-up menu: name of group for viewer setup actions (value "group.viewerSetup").



TARGET_ID_HIERARCHY_VIEW
final public static String TARGET_ID_HIERARCHY_VIEW(Code)
Type hierarchy view part: pop-up menu target ID for type hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.typehierarchy").
since:
   2.0



TARGET_ID_MEMBERS_VIEW
final public static String TARGET_ID_MEMBERS_VIEW(Code)
Type hierarchy view part: pop-up menu target ID for the member viewer (value "org.eclipse.jdt.ui.TypeHierarchy.members").
since:
   2.0



TARGET_ID_SUBTYPES_VIEW
final public static String TARGET_ID_SUBTYPES_VIEW(Code)
Type hierarchy view part: Pop-up menu target ID for the subtype hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.subtypes").
since:
   2.0



TARGET_ID_SUPERTYPES_VIEW
final public static String TARGET_ID_SUPERTYPES_VIEW(Code)
Type hierarchy view part: pop-up menu target ID for supertype hierarchy viewer (value "org.eclipse.jdt.ui.TypeHierarchy.supertypes").
since:
   2.0





www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.