Java Doc for SemanticHighlightings.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » internal » ui » javaeditor » 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.internal.ui.javaeditor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.jdt.internal.ui.javaeditor.SemanticHighlightings

SemanticHighlightings
public class SemanticHighlightings (Code)
Semantic highlightings
since:
   3.0


Field Summary
final public static  StringABSTRACT_METHOD_INVOCATION
     A named preference part that controls the highlighting of abstract method invocations.
final public static  StringANNOTATION
     A named preference part that controls the highlighting of annotations.
final public static  StringANNOTATION_ELEMENT_REFERENCE
     A named preference part that controls the highlighting of annotation element references.
final public static  StringAUTOBOXING
     A named preference part that controls the highlighting of auto(un)boxed expressions.
final public static  StringCLASS
     A named preference part that controls the highlighting of classes.
final public static  StringDEPRECATED_MEMBER
     A named preference part that controls the highlighting of deprecated members.
final public static  StringENUM
     A named preference part that controls the highlighting of enums.
final public static  StringFIELD
     A named preference part that controls the highlighting of fields.
final public static  StringINHERITED_METHOD_INVOCATION
     A named preference part that controls the highlighting of inherited method invocations.
final public static  StringINTERFACE
     A named preference part that controls the highlighting of interfaces.
final public static  StringLOCAL_VARIABLE
     A named preference part that controls the highlighting of local variables.
final public static  StringLOCAL_VARIABLE_DECLARATION
     A named preference part that controls the highlighting of local variables.
final public static  StringMETHOD
     A named preference part that controls the highlighting of methods (invocations and declarations).
final public static  StringMETHOD_DECLARATION
     A named preference part that controls the highlighting of method declarations.
final public static  StringPARAMETER_VARIABLE
     A named preference part that controls the highlighting of parameter variables.
final public static  StringSTATIC_FIELD
     A named preference part that controls the highlighting of static fields.
final public static  StringSTATIC_FINAL_FIELD
     A named preference part that controls the highlighting of static final fields.
final public static  StringSTATIC_METHOD_INVOCATION
     A named preference part that controls the highlighting of static method invocations.
final public static  StringTYPE_ARGUMENT
     A named preference part that controls the highlighting of type arguments.
final public static  StringTYPE_VARIABLE
     A named preference part that controls the highlighting of type parameters.


Method Summary
public static  booleanaffectsEnablement(IPreferenceStore store, PropertyChangeEvent event)
     Tests whether event in store affects the enablement of semantic highlighting.
public static  StringgetBoldPreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls if the given semantic highlighting has the text attribute bold.
public static  StringgetColorPreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls the given semantic highlighting's color.
public static  StringgetEnabledPreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls if the given semantic highlighting is enabled.
public static  StringgetItalicPreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls if the given semantic highlighting has the text attribute italic.
public static  SemanticHighlighting[]getSemanticHighlightings()
    
public static  StringgetStrikethroughPreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls if the given semantic highlighting has the text attribute strikethrough.
public static  StringgetUnderlinePreferenceKey(SemanticHighlighting semanticHighlighting)
     A named preference that controls if the given semantic highlighting has the text attribute underline.
public static  voidinitDefaults(IPreferenceStore store)
     Initialize default preferences in the given preference store.
public static  booleanisEnabled(IPreferenceStore store)
     Tests whether semantic highlighting is currently enabled.

Field Detail
ABSTRACT_METHOD_INVOCATION
final public static String ABSTRACT_METHOD_INVOCATION(Code)
A named preference part that controls the highlighting of abstract method invocations.



ANNOTATION
final public static String ANNOTATION(Code)
A named preference part that controls the highlighting of annotations.
since:
   3.2



ANNOTATION_ELEMENT_REFERENCE
final public static String ANNOTATION_ELEMENT_REFERENCE(Code)
A named preference part that controls the highlighting of annotation element references.
since:
   3.1



AUTOBOXING
final public static String AUTOBOXING(Code)
A named preference part that controls the highlighting of auto(un)boxed expressions.
since:
   3.1



CLASS
final public static String CLASS(Code)
A named preference part that controls the highlighting of classes.
since:
   3.2



DEPRECATED_MEMBER
final public static String DEPRECATED_MEMBER(Code)
A named preference part that controls the highlighting of deprecated members.



ENUM
final public static String ENUM(Code)
A named preference part that controls the highlighting of enums.
since:
   3.2



FIELD
final public static String FIELD(Code)
A named preference part that controls the highlighting of fields.



INHERITED_METHOD_INVOCATION
final public static String INHERITED_METHOD_INVOCATION(Code)
A named preference part that controls the highlighting of inherited method invocations.



INTERFACE
final public static String INTERFACE(Code)
A named preference part that controls the highlighting of interfaces.
since:
   3.2



LOCAL_VARIABLE
final public static String LOCAL_VARIABLE(Code)
A named preference part that controls the highlighting of local variables.



LOCAL_VARIABLE_DECLARATION
final public static String LOCAL_VARIABLE_DECLARATION(Code)
A named preference part that controls the highlighting of local variables.



METHOD
final public static String METHOD(Code)
A named preference part that controls the highlighting of methods (invocations and declarations).
since:
   3.1



METHOD_DECLARATION
final public static String METHOD_DECLARATION(Code)
A named preference part that controls the highlighting of method declarations.



PARAMETER_VARIABLE
final public static String PARAMETER_VARIABLE(Code)
A named preference part that controls the highlighting of parameter variables.



STATIC_FIELD
final public static String STATIC_FIELD(Code)
A named preference part that controls the highlighting of static fields.



STATIC_FINAL_FIELD
final public static String STATIC_FINAL_FIELD(Code)
A named preference part that controls the highlighting of static final fields.



STATIC_METHOD_INVOCATION
final public static String STATIC_METHOD_INVOCATION(Code)
A named preference part that controls the highlighting of static method invocations.



TYPE_ARGUMENT
final public static String TYPE_ARGUMENT(Code)
A named preference part that controls the highlighting of type arguments.
since:
   3.2



TYPE_VARIABLE
final public static String TYPE_VARIABLE(Code)
A named preference part that controls the highlighting of type parameters.
since:
   3.1





Method Detail
affectsEnablement
public static boolean affectsEnablement(IPreferenceStore store, PropertyChangeEvent event)(Code)
Tests whether event in store affects the enablement of semantic highlighting.
Parameters:
  store - the preference store where event was observed
Parameters:
  event - the property change under examination true if event changed semantichighlighting enablement, false if it did not
since:
   3.1



getBoldPreferenceKey
public static String getBoldPreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls if the given semantic highlighting has the text attribute bold.
Parameters:
  semanticHighlighting - the semantic highlighting the bold preference key



getColorPreferenceKey
public static String getColorPreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls the given semantic highlighting's color.
Parameters:
  semanticHighlighting - the semantic highlighting the color preference key



getEnabledPreferenceKey
public static String getEnabledPreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls if the given semantic highlighting is enabled.
Parameters:
  semanticHighlighting - the semantic highlighting the enabled preference key



getItalicPreferenceKey
public static String getItalicPreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls if the given semantic highlighting has the text attribute italic.
Parameters:
  semanticHighlighting - the semantic highlighting the italic preference key



getSemanticHighlightings
public static SemanticHighlighting[] getSemanticHighlightings()(Code)
The semantic highlightings, the order defines the precedence of matches, the first match wins.



getStrikethroughPreferenceKey
public static String getStrikethroughPreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls if the given semantic highlighting has the text attribute strikethrough.
Parameters:
  semanticHighlighting - the semantic highlighting the strikethrough preference key
since:
   3.1



getUnderlinePreferenceKey
public static String getUnderlinePreferenceKey(SemanticHighlighting semanticHighlighting)(Code)
A named preference that controls if the given semantic highlighting has the text attribute underline.
Parameters:
  semanticHighlighting - the semantic highlighting the underline preference key
since:
   3.1



initDefaults
public static void initDefaults(IPreferenceStore store)(Code)
Initialize default preferences in the given preference store.
Parameters:
  store - The preference store



isEnabled
public static boolean isEnabled(IPreferenceStore store)(Code)
Tests whether semantic highlighting is currently enabled.
Parameters:
  store - the preference store to consult true if semantic highlighting is enabled,false if it is not
since:
   3.1



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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