Java Doc for ClassData.java in  » 6.0-JDK-Modules-sun » tools » sun » tools » javap » 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 » 6.0 JDK Modules sun » tools » sun.tools.javap 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   sun.tools.javap.ClassData

ClassData
public class ClassData implements RuntimeConstants(Code)
Central data repository of the Java Disassembler. Stores all the information in java class file.
author:
   Sucheta Dambalkar (Adopted code from jdis)


Field Summary
final static  StringhexString
    
public static  charhexTable
    

Constructor Summary
public  ClassData(InputStream infile)
     Read classfile to disassemble.

Method Summary
public  StringStringTag(int cpx)
    
public  StringStringValue(int cpx)
     Returns string at that index.
public  StringTagString(int tag)
    
public  voiderror(String msg)
    
public  String[]getAccess()
     Returns the access of this class or interface.
public  AttrData[]getAttributes()
     Returns list of attributes.
public  StringgetClassName()
     Returns the name of this class.
public  StringgetClassName(int cpx)
     Returns the name of class at perticular index.
public  intgetCpoolCount()
     Returns total constant pool entry count.
public  CPX2getCpoolEntry(int cpx)
     Returns constant pool entry at that index.
public  ObjectgetCpoolEntryobj(int cpx)
    
public  FieldData[]getFields()
     Returns list of field info.
public  InnerClassData[]getInnerClasses()
     Returns list of innerclasses.
public  intgetMajor_version()
     Returns major version of class file.
public  MethodData[]getMethods()
     Returns list of method info.
public  intgetMinor_version()
     Returns minor version of class file.
public  StringgetName(int cpx)
    
public  StringgetPkgName()
     Returns package name.
public  StringgetShortClassName(int cpx)
     Returns unqualified class name.
public  StringgetSourceName()
     Returns source file name.
public  StringgetString(int n)
    
public  StringgetStringValue(int cpoolx)
     Returns string at prticular constant pool index.
public  StringgetSuperClassName()
     Returns super class name.
public  String[]getSuperInterfaces()
     Returns list of super interfaces.
public  bytegetTag(int n)
    
public  intgetthis_cpx()
     Returns index of this class.
public  booleanisClass()
    
public  booleanisInterface()
     Returns true if it is a interface.
public  booleanisPublic()
     Returns true if this member is public, false otherwise.
public  booleanisSuperSet()
     Returns true if superbit is set.
public  StringjavaName(String name)
     Returns resolved java type name.
public  voidread(DataInputStream in)
     Reads and stores class file information.
 voidreadCP(DataInputStream in)
     Reads and stores constant pool info.
protected  voidreadFields(DataInputStream in)
     Reads and strores field info.
protected  voidreadMethods(DataInputStream in)
     Reads and strores Method info.
static  StringtoHex(long val, int width)
    
static  StringtoHex(long val)
    
static  StringtoHex(int val)
    

Field Detail
hexString
final static String hexString(Code)



hexTable
public static char hexTable(Code)




Constructor Detail
ClassData
public ClassData(InputStream infile)(Code)
Read classfile to disassemble.




Method Detail
StringTag
public String StringTag(int cpx)(Code)



StringValue
public String StringValue(int cpx)(Code)
Returns string at that index.



TagString
public String TagString(int tag)(Code)



error
public void error(String msg)(Code)



getAccess
public String[] getAccess()(Code)
Returns the access of this class or interface.



getAttributes
public AttrData[] getAttributes()(Code)
Returns list of attributes.



getClassName
public String getClassName()(Code)
Returns the name of this class.



getClassName
public String getClassName(int cpx)(Code)
Returns the name of class at perticular index.



getCpoolCount
public int getCpoolCount()(Code)
Returns total constant pool entry count.



getCpoolEntry
public CPX2 getCpoolEntry(int cpx)(Code)
Returns constant pool entry at that index.



getCpoolEntryobj
public Object getCpoolEntryobj(int cpx)(Code)



getFields
public FieldData[] getFields()(Code)
Returns list of field info.



getInnerClasses
public InnerClassData[] getInnerClasses()(Code)
Returns list of innerclasses.



getMajor_version
public int getMajor_version()(Code)
Returns major version of class file.



getMethods
public MethodData[] getMethods()(Code)
Returns list of method info.



getMinor_version
public int getMinor_version()(Code)
Returns minor version of class file.



getName
public String getName(int cpx)(Code)



getPkgName
public String getPkgName()(Code)
Returns package name.



getShortClassName
public String getShortClassName(int cpx)(Code)
Returns unqualified class name.



getSourceName
public String getSourceName()(Code)
Returns source file name.



getString
public String getString(int n)(Code)
get a string



getStringValue
public String getStringValue(int cpoolx)(Code)
Returns string at prticular constant pool index.



getSuperClassName
public String getSuperClassName()(Code)
Returns super class name.



getSuperInterfaces
public String[] getSuperInterfaces()(Code)
Returns list of super interfaces.



getTag
public byte getTag(int n)(Code)
get the type of constant given an index



getthis_cpx
public int getthis_cpx()(Code)
Returns index of this class.



isClass
public boolean isClass()(Code)
Returns true if it is a class



isInterface
public boolean isInterface()(Code)
Returns true if it is a interface.



isPublic
public boolean isPublic()(Code)
Returns true if this member is public, false otherwise.



isSuperSet
public boolean isSuperSet()(Code)
Returns true if superbit is set.



javaName
public String javaName(String name)(Code)
Returns resolved java type name.



read
public void read(DataInputStream in) throws IOException(Code)
Reads and stores class file information.



readCP
void readCP(DataInputStream in) throws IOException(Code)
Reads and stores constant pool info.



readFields
protected void readFields(DataInputStream in) throws IOException(Code)
Reads and strores field info.



readMethods
protected void readMethods(DataInputStream in) throws IOException(Code)
Reads and strores Method info.



toHex
static String toHex(long val, int width)(Code)



toHex
static String toHex(long val)(Code)



toHex
static String toHex(int val)(Code)



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.