Java Doc for Summary.java in  » UML » jrefactory » org » acm » seguin » summary » 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 » org.acm.seguin.summary 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.acm.seguin.summary.Summary

All known Subclasses:   org.acm.seguin.summary.TypeSummary,  org.acm.seguin.summary.MethodSummary,  org.acm.seguin.summary.VariableSummary,  org.acm.seguin.summary.FieldAccessSummary,  org.acm.seguin.summary.TypeDeclSummary,  org.acm.seguin.summary.PackageSummary,  org.acm.seguin.summary.ImportSummary,  org.acm.seguin.summary.MessageSendSummary,  org.acm.seguin.summary.FileSummary,
Summary
abstract public class Summary implements ModifierHolder,Serializable(Code)
Basic summary class. Provides a single point for a visitor to encounter and a parent summary. All summaries have a parent except package summaries.
author:
   Chris Seguin


Field Summary
protected  intmodifiers
    

Constructor Summary
public  Summary(Summary initParent)
    

Method Summary
public  Objectaccept(SummaryVisitor visitor, Object data)
    
public  voidaddModifier(String mod)
    
public  voidcopyModifiers(ModifierHolder source)
    
public  intgetDeclarationLine()
    
public  intgetEndLine()
    
public  intgetModifiers()
    
public  StringgetModifiersString(int code)
    
abstract public  StringgetName()
    
public  SummarygetParent()
    
public  intgetStartLine()
    
public  booleanisAbstract()
    
public  booleanisExplicit()
    
public  booleanisFinal()
    
public  booleanisInterface()
    
public  booleanisNative()
    
public  booleanisPackage()
    
public  booleanisPrivate()
    
public  booleanisProtected()
    
public  booleanisPublic()
    
public  booleanisStatic()
    
public  booleanisStrictFP()
    
public  booleanisSynchronized()
    
public  booleanisTransient()
    
public  booleanisVolatile()
    
public  voidsetAbstract(boolean value)
    
public  voidsetAbstract()
    
protected  voidsetCode(boolean value, int code)
    
protected  voidsetEndLine(int value)
    
public  voidsetFinal()
    
public  voidsetModifiers(int modifiers)
    
public  voidsetPrivate(boolean value)
    
public  voidsetPrivate()
    
public  voidsetProtected(boolean value)
    
public  voidsetProtected()
    
public  voidsetPublic(boolean value)
    
public  voidsetPublic()
    
protected  voidsetStartLine(int value)
    
public  voidsetStatic(boolean value)
    
public  voidsetStatic()
    
public  voidsetStrict()
    
public  voidsetSynchronized(boolean value)
    
public  voidsetSynchronized()
    
public  StringtoStandardOrderString()
    
public  StringtoStringAlphabetical()
    

Field Detail
modifiers
protected int modifiers(Code)




Constructor Detail
Summary
public Summary(Summary initParent)(Code)
Create a summary object
Parameters:
  initParent - the parent




Method Detail
accept
public Object accept(SummaryVisitor visitor, Object data)(Code)
Provide method to visit a node
Parameters:
  visitor - the visitor
Parameters:
  data - the data for the visit some new data



addModifier
public void addModifier(String mod)(Code)
Add a modifier
Parameters:
  mod - the new modifier



copyModifiers
public void copyModifiers(ModifierHolder source)(Code)
Copies the modifiers from another source
Parameters:
  source - the source



getDeclarationLine
public int getDeclarationLine()(Code)
Gets the DeclarationLine attribute of the MethodSummary object The DeclarationLine value



getEndLine
public int getEndLine()(Code)
Gets the EndLine attribute of the Summary object The EndLine value



getModifiers
public int getModifiers()(Code)
Gets the modifier bits the modifier bits



getModifiersString
public String getModifiersString(int code)(Code)
Returns a string containing all the modifiers
Parameters:
  code - the code used to determine the order of the modifiers the string representationof the order



getName
abstract public String getName()(Code)
Returns the name the name



getParent
public Summary getParent()(Code)
Return the parent object the parent object



getStartLine
public int getStartLine()(Code)
Gets the StartLine attribute of the Summary object The StartLine value



isAbstract
public boolean isAbstract()(Code)
Determine if the object is abstract true if this stores an ABSTRACT flag



isExplicit
public boolean isExplicit()(Code)
Determine if the object is explicit true if this stores an EXPLICIT flag



isFinal
public boolean isFinal()(Code)
Determine if the object is final true if this stores an FINAL flag



isInterface
public boolean isInterface()(Code)
Determine if the object is interface true if this stores an INTERFACE flag



isNative
public boolean isNative()(Code)
Determine if the object is native true if this stores an NATIVE flag



isPackage
public boolean isPackage()(Code)
Determines if this has package scope true if this has package scope



isPrivate
public boolean isPrivate()(Code)
Determine if the object is private true if this stores an PRIVATE flag



isProtected
public boolean isProtected()(Code)
Determine if the object is protected true if this stores an PROTECTED flag



isPublic
public boolean isPublic()(Code)
Determine if the object is public true if this stores an PUBLIC flag



isStatic
public boolean isStatic()(Code)
Determine if the object is static true if this stores an static flag



isStrictFP
public boolean isStrictFP()(Code)
Determine if the object is strictFP true if this stores an STRICTFP flag



isSynchronized
public boolean isSynchronized()(Code)
Determine if the object is synchronized true if this stores an SYNCHRONIZED flag



isTransient
public boolean isTransient()(Code)
Determine if the object is transient true if this stores an TRANSIENT flag



isVolatile
public boolean isVolatile()(Code)
Determine if the object is volatile true if this stores an VOLATILE flag



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



setAbstract
public void setAbstract()(Code)
Sets the abstract bit (to true) in the modifiers



setCode
protected void setCode(boolean value, int code)(Code)
Sets or resets a single bit in the modifiers
Parameters:
  value - true if we are setting the bit
Parameters:
  code - The new Code value



setEndLine
protected void setEndLine(int value)(Code)
Sets the EndLine attribute of the Summary object
Parameters:
  value - The new EndLine value



setFinal
public void setFinal()(Code)
Sets the Final bit (to true) of the in the modifiers



setModifiers
public void setModifiers(int modifiers)(Code)
Sets the modifier bits
Parameters:
  modifiers - the modifier bits



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



setPrivate
public void setPrivate()(Code)
Sets the private bit (to true) in the modifiers



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



setProtected
public void setProtected()(Code)
Sets the protected bit (to true) in the modifiers



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



setPublic
public void setPublic()(Code)
Sets the public bit (to true) in the modifiers



setStartLine
protected void setStartLine(int value)(Code)
Sets the StartLine attribute of the Summary object
Parameters:
  value - The new StartLine value



setStatic
public void setStatic(boolean value)(Code)
Sets the Static bit in the modifiers
Parameters:
  value - The new Static value



setStatic
public void setStatic()(Code)
Sets the Static bit (to true) in the modifiers



setStrict
public void setStrict()(Code)
Sets the StrictFP bit (to true) of the in the modifiers



setSynchronized
public void setSynchronized(boolean value)(Code)
Sets the Synchronized bit in the modifiers
Parameters:
  value - The new Synchronized value



setSynchronized
public void setSynchronized()(Code)
Sets the Synchronized bit (to true) in the modifiers



toStandardOrderString
public String toStandardOrderString()(Code)
Convert the object to a string a string describing the modifiers



toStringAlphabetical
public String toStringAlphabetical()(Code)
Convert the object to a string a string describing the modifiers



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.