Java Doc for ModifierHolder.java in  » UML » jrefactory » net » sourceforge » jrefactory » ast » 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 » UML » jrefactory » net.sourceforge.jrefactory.ast 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.sourceforge.jrefactory.ast.ModifierHolder

All known Subclasses:   net.sourceforge.jrefactory.ast.AccessNode,  org.acm.seguin.summary.Summary,  net.sourceforge.jrefactory.ast.ModifierAdapter,
ModifierHolder
public interface ModifierHolder (Code)
Holds a description of the modifiers for a field or a class
author:
   Mike Atkinson
since:
   jRefactory 2.9.0, created October 16, 2003


Field Summary
final static  intABSTRACT
     The int value representing the abstract modifier.
final static  intEXPLICIT
    
final static  intFINAL
     The int value representing the final modifier.
final static  intINTERFACE
     The int value representing the interface modifier.
final static  intNATIVE
     The int value representing the native modifier.
final static  intPRIVATE
     The int value representing the private modifier.
final static  intPROTECTED
     The int value representing the protected modifier.
final static  intPUBLIC
     The int value representing the public modifier.
final static  intSTATIC
     The int value representing the static modifier.
final static  intSTRICTFP
     The int value representing the strictfp modifier.
final static  intSYNCHRONIZED
     The int value representing the synchronized modifier.
final static  intTRANSIENT
     The int value representing the transient modifier.
final static  intVOLATILE
     The int value representing the volatile modifier.
final static  String[]names
    


Method Summary
 voidaddModifier(String mod)
    
 voidcopyModifiers(ModifierHolder source)
    
 intgetModifiers()
    
 booleanisAbstract()
    
 booleanisExplicit()
    
 booleanisFinal()
    
 booleanisInterface()
    
 booleanisNative()
    
 booleanisPackage()
    
 booleanisPrivate()
    
 booleanisProtected()
    
 booleanisPublic()
    
 booleanisStatic()
    
 booleanisStrictFP()
    
 booleanisSynchronized()
    
 booleanisTransient()
    
 booleanisVolatile()
    
 voidsetAbstract(boolean value)
    
 voidsetAbstract()
    
 voidsetFinal()
    
 voidsetModifiers(int modifiers)
    
 voidsetPrivate(boolean value)
    
 voidsetPrivate()
    
 voidsetProtected(boolean value)
    
 voidsetProtected()
    
 voidsetPublic(boolean value)
    
 voidsetPublic()
    
 voidsetStatic(boolean value)
    
 voidsetStatic()
    
 voidsetStrict()
    
 voidsetSynchronized(boolean value)
    
 voidsetSynchronized()
    

Field Detail
ABSTRACT
final static int ABSTRACT(Code)
The int value representing the abstract modifier.
since:
   v 1.0



EXPLICIT
final static int EXPLICIT(Code)
Description of the Field
since:
   v 1.0



FINAL
final static int FINAL(Code)
The int value representing the final modifier.
since:
   v 1.0



INTERFACE
final static int INTERFACE(Code)
The int value representing the interface modifier.
since:
   v 1.0



NATIVE
final static int NATIVE(Code)
The int value representing the native modifier.
since:
   v 1.0



PRIVATE
final static int PRIVATE(Code)
The int value representing the private modifier.
since:
   v 1.0



PROTECTED
final static int PROTECTED(Code)
The int value representing the protected modifier.
since:
   v 1.0



PUBLIC
final static int PUBLIC(Code)
The int value representing the public modifier.
since:
   v 1.0



STATIC
final static int STATIC(Code)
The int value representing the static modifier.
since:
   v 1.0



STRICTFP
final static int STRICTFP(Code)
The int value representing the strictfp modifier.
since:
   v 1.0



SYNCHRONIZED
final static int SYNCHRONIZED(Code)
The int value representing the synchronized modifier.
since:
   v 1.0



TRANSIENT
final static int TRANSIENT(Code)
The int value representing the transient modifier.
since:
   v 1.0



VOLATILE
final static int VOLATILE(Code)
The int value representing the volatile modifier.
since:
   v 1.0



names
final static String[] names(Code)
Description of the Field
since:
   v 1.0





Method Detail
addModifier
void addModifier(String mod)(Code)
Add a modifier
Parameters:
  mod - the new modifier
since:
   v 1.0



copyModifiers
void copyModifiers(ModifierHolder source)(Code)
Description of the Method
Parameters:
  source - Description of Parameter
since:
   v 1.0



getModifiers
int getModifiers()(Code)
Gets the modifier bits the modifier bits
since:
   v 1.0



isAbstract
boolean isAbstract()(Code)
Determine if the node is abstract true if this stores an ABSTRACT flag
since:
   v 1.0



isExplicit
boolean isExplicit()(Code)
Determine if the node is explicit true if this stores an EXPLICIT flag
since:
   v 1.0



isFinal
boolean isFinal()(Code)
Determine if the node is final true if this stores an FINAL flag
since:
   v 1.0



isInterface
boolean isInterface()(Code)
Determine if the node is interface true if this stores an INTERFACE flag
since:
   v 1.0



isNative
boolean isNative()(Code)
Determine if the node is native true if this stores an NATIVE flag
since:
   v 1.0



isPackage
boolean isPackage()(Code)
Determines if this has package scope true if this has package scope
since:
   v 1.0



isPrivate
boolean isPrivate()(Code)
Determine if the node is private true if this stores an PRIVATE flag
since:
   v 1.0



isProtected
boolean isProtected()(Code)
Determine if the node is protected true if this stores an PROTECTED flag
since:
   v 1.0



isPublic
boolean isPublic()(Code)
Determine if the node is public true if this stores an PUBLIC flag
since:
   v 1.0



isStatic
boolean isStatic()(Code)
Determine if the node is static true if this stores an static flag
since:
   v 1.0



isStrictFP
boolean isStrictFP()(Code)
Determine if the node is strictFP true if this stores an STRICTFP flag
since:
   v 1.0



isSynchronized
boolean isSynchronized()(Code)
Determine if the node is synchronized true if this stores an SYNCHRONIZED flag
since:
   v 1.0



isTransient
boolean isTransient()(Code)
Determine if the node is transient true if this stores an TRANSIENT flag
since:
   v 1.0



isVolatile
boolean isVolatile()(Code)
Determine if the node is volatile true if this stores an VOLATILE flag
since:
   v 1.0



setAbstract
void setAbstract(boolean value)(Code)
Sets the abstract bit in the modifiers
Parameters:
  value - true if we are setting the modifier
since:
   v 1.0



setAbstract
void setAbstract()(Code)
Sets the abstract bit (to true) in the modifiers
since:
   v 1.0



setFinal
void setFinal()(Code)
Sets the Final bit (to true) of the in the modifiers
since:
   v 1.0



setModifiers
void setModifiers(int modifiers)(Code)
Sets the modifier bits
Parameters:
  modifiers - the modifier bits
since:
   v 1.0



setPrivate
void setPrivate(boolean value)(Code)
Sets the private bit in the modifiers
Parameters:
  value - true if we are setting the private modifier
since:
   v 1.0



setPrivate
void setPrivate()(Code)
Sets the private bit (to true) in the modifiers
since:
   v 1.0



setProtected
void setProtected(boolean value)(Code)
Sets the protected bit in the modifiers
Parameters:
  value - true if we are setting the protected modifier
since:
   v 1.0



setProtected
void setProtected()(Code)
Sets the protected bit (to true) in the modifiers
since:
   v 1.0



setPublic
void setPublic(boolean value)(Code)
Sets the public bit in the modifiers
Parameters:
  value - true if we are setting the public modifier
since:
   v 1.0



setPublic
void setPublic()(Code)
Sets the public bit (to true) in the modifiers
since:
   v 1.0



setStatic
void setStatic(boolean value)(Code)
Sets the Static bit of the in the modifiers
Parameters:
  value - The new Static value
since:
   v 1.0



setStatic
void setStatic()(Code)
Sets the Static bit (to true) of the in the modifiers
since:
   v 1.0



setStrict
void setStrict()(Code)
Sets the StrictFP bit (to true) of the in the modifiers
since:
   v 1.0



setSynchronized
void setSynchronized(boolean value)(Code)
Sets the Synchronized bit of the in the modifiers
Parameters:
  value - The new Synchronized value
since:
   v 1.0



setSynchronized
void setSynchronized()(Code)
Sets the Synchronized bit (to true) in the modifiers
since:
   v 1.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.