Java Doc for ClassType.java in  » Scripting » Nice » gnu » bytecode » 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 » Scripting » Nice » gnu.bytecode 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.bytecode.Type
      gnu.bytecode.ObjectType
         gnu.bytecode.ClassType

All known Subclasses:   gnu.expr.PairClassType,
ClassType
public class ClassType extends ObjectType implements AttrContainer(Code)


Field Summary
 intCode_name_index
     Constant pool index of "Code".
 intConstantValue_name_index
     Constant pool index of "ConstantValue".
 intLineNumberTable_name_index
     Constant pool index of "LineNumberTable".
 intLocalVariableTable_name_index
     Constant pool index of "LocalVariableTable".
public  intaccess_flags
    
 Attributeattributes
    
 ConstantPoolconstants
    
public  Methodconstructor
    
 booleanemitDebugInfo
    
 Fieldfields
    
 intfields_count
    
 int[]interfaceIndexes
    
 ClassType[]interfaces
    
 Fieldlast_field
    
 Methodlast_method
    
final public static  intmajor_version
    
 Methodmethods
    
 intmethods_count
    
final public static  intminor_version
    
final public static  ClassType[]noClasses
    
public  Stringsourcefile
    
 ClassTypesuperClass
     The super (base) class of the current class. X.superClass == null means the superClass has not been specified, and defaults to java.lang.Object.
 intsuperClassIndex
     The constant pool index of the superClass, or -1 if unassigned.
 intthisClassIndex
    

Constructor Summary
public  ClassType()
    
public  ClassType(String class_name)
    
 ClassType(String class_name, int flags)
    

Method Summary
public  FieldaddField()
     Add a new field to this class.
public  FieldaddField(String name)
     Add a new field to this class, and name the field.
final public  FieldaddField(String name, Type type)
    
final public  FieldaddField(String name, Type type, int flags)
    
public  voidaddFields()
     Use reflection to add all the declared fields of this class. Does not add private or package-private fields. Does not check for duplicate (already-known) fields.
public  voidaddInterface(ClassType newInterface)
     Add an interface to the list of implemented interfaces.
 MethodaddMethod()
    
public  MethodaddMethod(String name)
    
public  MethodaddMethod(String name, int flags)
    
public  MethodaddMethod(String name, Type[] arg_types, Type return_type, int flags)
    
public  MethodaddMethod(String name, int flags, Type[] arg_types, Type return_type)
     Add a method to this ClassType. If an existing method matches, return that.
public  MethodaddMethod(String name, String signature, int flags)
    
public  voidaddMethods()
     Add methods using reflection if it was not already done.
public  voidaddMethods(Class clas)
     Use reflection to add all the declared methods of this class. Does not add constructors nor private or package-private methods. Does not check for duplicate (already-known) methods.
Parameters:
  clas - should be the same as getReflectClass().
public  intcompare(Type other)
    
final public  intcountMethods(Filter filter, int searchSupers)
     Count methods matching a given filter.
public  voiddoFixups()
     Do various fixups after generating code but before we can write it out. This includes assigning constant pool indexes where needed, finalizing labels, etc.
public  voidemitCoerceFromObject(CodeAttr code)
    
public  intgetArity()
     Returns the number of type parameters.
final public  AttributegetAttributes()
    
final public  CpoolEntrygetConstant(int i)
    
final public  ConstantPoolgetConstants()
    
public  FieldgetDeclaredField(String name)
     Find a field with the given name declared in this class.
public  MethodgetDeclaredMethod(String name, Type[] arg_types, Type return_type)
     Return a method with the given name and arguments types, or null if none exists.
public  MethodgetDeclaredMethod(String name, Type[] arg_types)
    
public  MethodgetDeclaredMethod(String name, int argCount)
     Get a method with matching name and number of arguments.
public  MethodgetDeclaredMethods()
    
public  FieldgetField(String name)
     Find a field with the given name declared in this class or its ancestors.
final public  intgetFieldCount()
    
final public  FieldgetFields()
     Get the fields of this class.
public  ClassType[]getInterfaces()
    
public  Method[]getMatchingMethods(String name, Type[] paramTypes, int flags)
    
public  MethodgetMethod(String name, Type[] arg_types)
    
public  MethodgetMethod(String name, Type[] arg_types, boolean concrete)
    
final public  intgetMethodCount()
    
final public  MethodgetMethods()
     Get the methods of this class.
public  Method[]getMethods(Filter filter, boolean searchSupers)
    
public  Method[]getMethods(Filter filter, int searchSupers)
     Get methods matching a given filter.
public  intgetMethods(Filter filter, int searchSupers, Method[] result, int offset)
     Helper to get methods satisfying a filtering predicate.
public  intgetMethods(Filter filter, int searchSupers, Vector result, String context)
     Helper to get methods satisfying a filtering predicate.
Parameters:
  filter - to select methods to return
Parameters:
  searchSupers - 0 if only current class should be searched,1 if superclasses should also be searched,2 if super-interfaces should also be search
Parameters:
  result - Vector to add selected methods in
Parameters:
  context - If non-null, skip if class not visible in named package.
final public  intgetModifiers()
     Return the modifiers (access flags) for this class.
public  StringgetPackageName()
    
public  TypeVariable[]getParameters()
     Returns the type parameters.
 SourceMapgetSourceMap()
    
public  ClassTypegetSuperclass()
    
final public  booleanimplementsInterface(ClassType iface)
     True if this class/interface implements the interface iface.
public  booleanisAssignableTo(Type other)
    
final public  booleanisFinal()
    
final public  booleanisInterface()
    
final public  booleanisSubclass(ClassType other)
    
public static  ClassTypemake(String name)
     Find a ClassType with the given name, or create a new one. Use this for "library classes", where you need the field/method types, but not one where you are about to generate code for.
Parameters:
  name - the name of the class (e..g.
public static  ClassTypemake(String name, ClassType superClass)
    
 MethodrefineMethod(Method method)
     Return an equivalent method when the receiver is of this type.
final public  voidsetAttributes(Attribute attributes)
    
final public  voidsetInterface(boolean val)
    
public  voidsetInterfaces(ClassType[] interfaces)
    
final public  voidsetModifiers(int flags)
     Set the modifiers (access flags) for this class.
public  voidsetName(String name)
     Sets the name of the class being defined in this classfile.
public  voidsetSourceFile(String name)
     Set the name of the SourceFile associated with this class.
public  voidsetSuper(String name)
     Set the superclass of the is class.
public  voidsetSuper(ClassType superClass)
    
public  TypethisType()
    
public  StringtoString()
    
public static  byte[]to_utf8(String str)
     Convert a String to a Utf8 byte array.
Parameters:
  str - the input String.
public  byte[]writeToArray()
    
public  voidwriteToFile(String filename)
    
public  voidwriteToFile(File file)
    
public  voidwriteToFile()
    
public  voidwriteToStream(OutputStream stream)
    

Field Detail
Code_name_index
int Code_name_index(Code)
Constant pool index of "Code".



ConstantValue_name_index
int ConstantValue_name_index(Code)
Constant pool index of "ConstantValue".



LineNumberTable_name_index
int LineNumberTable_name_index(Code)
Constant pool index of "LineNumberTable".



LocalVariableTable_name_index
int LocalVariableTable_name_index(Code)
Constant pool index of "LocalVariableTable".



access_flags
public int access_flags(Code)



attributes
Attribute attributes(Code)



constants
ConstantPool constants(Code)



constructor
public Method constructor(Code)



emitDebugInfo
boolean emitDebugInfo(Code)



fields
Field fields(Code)



fields_count
int fields_count(Code)



interfaceIndexes
int[] interfaceIndexes(Code)



interfaces
ClassType[] interfaces(Code)



last_field
Field last_field(Code)



last_method
Method last_method(Code)



major_version
final public static int major_version(Code)



methods
Method methods(Code)



methods_count
int methods_count(Code)



minor_version
final public static int minor_version(Code)



noClasses
final public static ClassType[] noClasses(Code)



sourcefile
public String sourcefile(Code)



superClass
ClassType superClass(Code)
The super (base) class of the current class. X.superClass == null means the superClass has not been specified, and defaults to java.lang.Object.



superClassIndex
int superClassIndex(Code)
The constant pool index of the superClass, or -1 if unassigned.



thisClassIndex
int thisClassIndex(Code)




Constructor Detail
ClassType
public ClassType()(Code)



ClassType
public ClassType(String class_name)(Code)



ClassType
ClassType(String class_name, int flags)(Code)




Method Detail
addField
public Field addField()(Code)
Add a new field to this class.



addField
public Field addField(String name)(Code)
Add a new field to this class, and name the field.
Parameters:
  name - the name of the new field



addField
final public Field addField(String name, Type type)(Code)



addField
final public Field addField(String name, Type type, int flags)(Code)



addFields
public void addFields()(Code)
Use reflection to add all the declared fields of this class. Does not add private or package-private fields. Does not check for duplicate (already-known) fields.



addInterface
public void addInterface(ClassType newInterface)(Code)
Add an interface to the list of implemented interfaces.



addMethod
Method addMethod()(Code)



addMethod
public Method addMethod(String name)(Code)



addMethod
public Method addMethod(String name, int flags)(Code)



addMethod
public Method addMethod(String name, Type[] arg_types, Type return_type, int flags)(Code)



addMethod
public Method addMethod(String name, int flags, Type[] arg_types, Type return_type)(Code)
Add a method to this ClassType. If an existing method matches, return that. Otherwise, create a new one. In contrast, the other addMethod methods always create new Methods.



addMethod
public Method addMethod(String name, String signature, int flags)(Code)



addMethods
public void addMethods()(Code)
Add methods using reflection if it was not already done.



addMethods
public void addMethods(Class clas)(Code)
Use reflection to add all the declared methods of this class. Does not add constructors nor private or package-private methods. Does not check for duplicate (already-known) methods.
Parameters:
  clas - should be the same as getReflectClass().



compare
public int compare(Type other)(Code)



countMethods
final public int countMethods(Filter filter, int searchSupers)(Code)
Count methods matching a given filter.
Parameters:
  filter - to select methods to return
Parameters:
  searchSupers - 0 if only current class should be searched,1 if superclasses should also be searched,2 if super-interfaces should also be search number of methods that match



doFixups
public void doFixups()(Code)
Do various fixups after generating code but before we can write it out. This includes assigning constant pool indexes where needed, finalizing labels, etc.



emitCoerceFromObject
public void emitCoerceFromObject(CodeAttr code)(Code)



getArity
public int getArity()(Code)
Returns the number of type parameters. Returns -1 if this class has no parametrization info.



getAttributes
final public Attribute getAttributes()(Code)



getConstant
final public CpoolEntry getConstant(int i)(Code)



getConstants
final public ConstantPool getConstants()(Code)



getDeclaredField
public Field getDeclaredField(String name)(Code)
Find a field with the given name declared in this class. the matching field, or null if there is no such field.



getDeclaredMethod
public Method getDeclaredMethod(String name, Type[] arg_types, Type return_type)(Code)
Return a method with the given name and arguments types, or null if none exists. Checks that the return type is the same as that given in argument, or throws an error.



getDeclaredMethod
public Method getDeclaredMethod(String name, Type[] arg_types)(Code)



getDeclaredMethod
public Method getDeclaredMethod(String name, int argCount)(Code)
Get a method with matching name and number of arguments.



getDeclaredMethods
public Method getDeclaredMethods()(Code)



getField
public Field getField(String name)(Code)
Find a field with the given name declared in this class or its ancestors. the matching field, or null if there is no such field.



getFieldCount
final public int getFieldCount()(Code)



getFields
final public Field getFields()(Code)
Get the fields of this class.



getInterfaces
public ClassType[] getInterfaces()(Code)
the interfaces this class is declared to implement(not those inherited from its superclass/superinterfaces).



getMatchingMethods
public Method[] getMatchingMethods(String name, Type[] paramTypes, int flags)(Code)



getMethod
public Method getMethod(String name, Type[] arg_types)(Code)



getMethod
public Method getMethod(String name, Type[] arg_types, boolean concrete)(Code)



getMethodCount
final public int getMethodCount()(Code)



getMethods
final public Method getMethods()(Code)
Get the methods of this class.



getMethods
public Method[] getMethods(Filter filter, boolean searchSupers)(Code)



getMethods
public Method[] getMethods(Filter filter, int searchSupers)(Code)
Get methods matching a given filter.
Parameters:
  filter - to select methods to return
Parameters:
  searchSupers - 0 if only current class should be searched,1 if superclasses should also be searched,2 if super-interfaces should also be search a fresh array containing the methods satisfying the filter



getMethods
public int getMethods(Filter filter, int searchSupers, Method[] result, int offset)(Code)
Helper to get methods satisfying a filtering predicate.
Parameters:
  filter - to select methods to return
Parameters:
  searchSupers - 0 if only current class should be searched,1 if superclasses should also be searched,2 if super-interfaces should also be search
Parameters:
  result - array to place selected methods in
Parameters:
  offset - start of where in result to place result number of methods placed in result array



getMethods
public int getMethods(Filter filter, int searchSupers, Vector result, String context)(Code)
Helper to get methods satisfying a filtering predicate.
Parameters:
  filter - to select methods to return
Parameters:
  searchSupers - 0 if only current class should be searched,1 if superclasses should also be searched,2 if super-interfaces should also be search
Parameters:
  result - Vector to add selected methods in
Parameters:
  context - If non-null, skip if class not visible in named package. number of methods placed in result array



getModifiers
final public int getModifiers()(Code)
Return the modifiers (access flags) for this class.



getPackageName
public String getPackageName()(Code)



getParameters
public TypeVariable[] getParameters()(Code)
Returns the type parameters. Returns null if this class has no parametrization info.



getSourceMap
SourceMap getSourceMap()(Code)



getSuperclass
public ClassType getSuperclass()(Code)



implementsInterface
final public boolean implementsInterface(ClassType iface)(Code)
True if this class/interface implements the interface iface.



isAssignableTo
public boolean isAssignableTo(Type other)(Code)
true if values of this type can be assigned to otherwithout widening nor conversion.



isFinal
final public boolean isFinal()(Code)



isInterface
final public boolean isInterface()(Code)



isSubclass
final public boolean isSubclass(ClassType other)(Code)



make
public static ClassType make(String name)(Code)
Find a ClassType with the given name, or create a new one. Use this for "library classes", where you need the field/method types, but not one where you are about to generate code for.
Parameters:
  name - the name of the class (e..g. "java.lang.String").



make
public static ClassType make(String name, ClassType superClass)(Code)



refineMethod
Method refineMethod(Method method)(Code)
Return an equivalent method when the receiver is of this type. Return null if no more precise method exists.



setAttributes
final public void setAttributes(Attribute attributes)(Code)



setInterface
final public void setInterface(boolean val)(Code)



setInterfaces
public void setInterfaces(ClassType[] interfaces)(Code)



setModifiers
final public void setModifiers(int flags)(Code)
Set the modifiers (access flags) for this class.



setName
public void setName(String name)(Code)
Sets the name of the class being defined in this classfile.
Parameters:
  name - the name to give to the class



setSourceFile
public void setSourceFile(String name)(Code)
Set the name of the SourceFile associated with this class.



setSuper
public void setSuper(String name)(Code)
Set the superclass of the is class.
Parameters:
  name - name of super class, or null if this is "Object".



setSuper
public void setSuper(ClassType superClass)(Code)



thisType
public Type thisType()(Code)



toString
public String toString()(Code)



to_utf8
public static byte[] to_utf8(String str)(Code)
Convert a String to a Utf8 byte array.
Parameters:
  str - the input String. the input encoded as a utf8 byte array.



writeToArray
public byte[] writeToArray() throws java.io.IOException(Code)



writeToFile
public void writeToFile(String filename) throws java.io.IOException(Code)



writeToFile
public void writeToFile(File file) throws java.io.IOException(Code)



writeToFile
public void writeToFile() throws java.io.IOException(Code)



writeToStream
public void writeToStream(OutputStream stream) throws java.io.IOException(Code)



Fields inherited from gnu.bytecode.ObjectType
final static int ADD_FIELDS_DONE(Code)(Java Doc)
final static int ADD_METHODS_DONE(Code)(Java Doc)
final static int EXISTING_CLASS(Code)(Java Doc)
int flags(Code)(Java Doc)

Methods inherited from gnu.bytecode.ObjectType
public Object coerceFromObject(Object obj)(Code)(Java Doc)
public int compare(Type other)(Code)(Java Doc)
public void emitCoerceFromObject(CodeAttr code)(Code)(Java Doc)
public Type getImplementationType()(Code)(Java Doc)
public String getInternalName()(Code)(Java Doc)
public Class getReflectClass()(Code)(Java Doc)
public boolean isAssignableTo(Type other)(Code)(Java Doc)
public Type promote()(Code)(Java Doc)
final public void setExisting(boolean existing)(Code)(Java Doc)

Fields inherited from gnu.bytecode.Type
public static Method booleanValue_method(Code)(Java Doc)
public static ClassType boolean_ctype(Code)(Java Doc)
final public static PrimType boolean_type(Code)(Java Doc)
public static ClassType byte_ctype(Code)(Java Doc)
final public static PrimType byte_type(Code)(Java Doc)
public static Method charValue_method(Code)(Java Doc)
public static ClassType char_ctype(Code)(Java Doc)
final public static PrimType char_type(Code)(Java Doc)
public static ClassType character_type(Code)(Java Doc)
public boolean collectable(Code)(Java Doc)
public static Method doubleValue_method(Code)(Java Doc)
public static ClassType double_ctype(Code)(Java Doc)
final public static PrimType double_type(Code)(Java Doc)
public static Method floatValue_method(Code)(Java Doc)
public static ClassType float_ctype(Code)(Java Doc)
final public static PrimType float_type(Code)(Java Doc)
public static Method intValue_method(Code)(Java Doc)
public static ClassType int_ctype(Code)(Java Doc)
final public static PrimType int_type(Code)(Java Doc)
public static Method longValue_method(Code)(Java Doc)
public static ClassType long_ctype(Code)(Java Doc)
final public static PrimType long_type(Code)(Java Doc)
static java.util.Hashtable mapNameToType(Code)(Java Doc)
final public static PrimType neverReturnsType(Code)(Java Doc)
final public static ObjectType nullType(Code)(Java Doc)
public static ClassType number_type(Code)(Java Doc)
public static ClassType pointer_type(Code)(Java Doc)
protected Class reflectClass(Code)(Java Doc)
public static ClassType short_ctype(Code)(Java Doc)
final public static PrimType short_type(Code)(Java Doc)
String signature(Code)(Java Doc)
int size(Code)(Java Doc)
public static ClassType string_type(Code)(Java Doc)
String this_name(Code)(Java Doc)
public static ClassType throwable_type(Code)(Java Doc)
public static Method toString_method(Code)(Java Doc)
public static ClassType tostring_type(Code)(Java Doc)
public static Type[] typeArray0(Code)(Java Doc)
final public static PrimType void_type(Code)(Java Doc)

Methods inherited from gnu.bytecode.Type
abstract public Object coerceFromObject(Object obj)(Code)(Java Doc)
public Object coerceToObject(Object obj)(Code)(Java Doc)
abstract public int compare(Type other)(Code)(Java Doc)
public void emitCoerceFrom(Type fromType, CodeAttr code)(Code)(Java Doc)
public void emitCoerceFromObject(CodeAttr code)(Code)(Java Doc)
public void emitCoerceTo(Type toType, CodeAttr code)(Code)(Java Doc)
public void emitCoerceToObject(CodeAttr code)(Code)(Java Doc)
public void emitIsInstance(CodeAttr code)(Code)(Java Doc)
public static void flushTypeChanges()(Code)(Java Doc)
public static void free(java.util.Map t)(Code)(Java Doc)
public static Type fullSignatureToType(String sig, int[] offset)(Code)(Java Doc)
public Type getImplementationType()(Code)(Java Doc)
static java.util.Hashtable getMapNameToType()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public java.lang.Class getReflectClass()(Code)(Java Doc)
final public String getSignature()(Code)(Java Doc)
final public int getSize()(Code)(Java Doc)
public static Type getType(String name)(Code)(Java Doc)
public boolean isArray()(Code)(Java Doc)
abstract public boolean isAssignableTo(Type other)(Code)(Java Doc)
public boolean isInstance(Object obj)(Code)(Java Doc)
public static boolean isMoreSpecific(Type[] t1, Type[] t2)(Code)(Java Doc)
public boolean isSubtype(Type other)(Code)(Java Doc)
public static boolean isValidJavaTypeName(String name)(Code)(Java Doc)
final public boolean isVoid()(Code)(Java Doc)
public static Type lookupType(String name)(Code)(Java Doc)
public static Type lowestCommonSuperType(Type t1, Type t2)(Code)(Java Doc)
public static Type make(Class reflectClass)(Code)(Java Doc)
public Type promote()(Code)(Java Doc)
Method refineMethod(Method method)(Code)(Java Doc)
public static void registerTypeForClass(Class clas, Type type)(Code)(Java Doc)
public static void registerTypeForName(String name, Type type)(Code)(Java Doc)
public static void reset()(Code)(Java Doc)
protected void setSignature(String sig)(Code)(Java Doc)
public static int signatureLength(String sig, int pos)(Code)(Java Doc)
public static int signatureLength(String sig)(Code)(Java Doc)
public static String signatureToName(String sig)(Code)(Java Doc)
public static PrimType signatureToPrimitive(char sig)(Code)(Java Doc)
public static Type signatureToType(String sig, int off, int len)(Code)(Java Doc)
public static Type signatureToType(String sig)(Code)(Java Doc)
protected static int swappedCompareResult(int code)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

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.