Java Doc for ClassType.java in  » Scripting » Kawa » 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 » Kawa » 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,Externalizable(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
    
 intclassfileFormatVersion
    
 ConstantPoolconstants
    
public  Methodconstructor
    
 booleanemitDebugInfo
    
 Fieldfields
    
 intfields_count
    
 int[]interfaceIndexes
    
 ClassType[]interfaces
    
 Fieldlast_field
    
 Methodlast_method
    
 Methodmethods
    
 intmethods_count
    
final public static  ClassType[]noClasses
    
 SourceDebugExtAttrsourceDbgExt
    
 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)
    

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. Is not thread-safe if another thread may access this ClassType.
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(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  voidcleanupAfterCompilation()
     Clear various object references, to help garbage collection.
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.
final public  AttributegetAttributes()
    
public  shortgetClassfileMajorVersion()
    
public  shortgetClassfileMinorVersion()
    
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)
     Look for a matching method.
public  MethodgetDeclaredMethod(String name, int argCount)
     Get a method with matching name and number of arguments.
final public synchronized  MethodgetDeclaredMethods()
    
public  FieldgetField(String name, int mask)
     Find a field with the given name declared in this class or its ancestors.
Parameters:
  name - the name of the field.
Parameters:
  mask - of match a field whose modifiers has one of these bits set.Howeve, if mask is -1, ignore the access flags.
public  FieldgetField(String name)
     Find a field with the given name declared in this class or its ancestors.
final public  intgetFieldCount()
    
final public synchronized  FieldgetFields()
     Get the fields of this class.
public synchronized  ClassType[]getInterfaces()
    
public  Method[]getMatchingMethods(String name, Type[] paramTypes, int flags)
    
public  MethodgetMethod(java.lang.reflect.Method method)
     Add a method to this ClassType. If an existing method matches, return that.
public  MethodgetMethod(String name, Type[] arg_types)
    
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 searched
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  ClassTypegetOuterLinkType()
    
public  StringgetPackageName()
    
public  ClassTypegetSuperclass()
    
final public  booleanhasOuterLink()
    
final public  booleanimplementsInterface(ClassType iface)
     True if this class/interface implements the interface iface.
public  booleanisAccessible(ClassType declaring, int modifiers)
     Check if a component is accessible from this class.
final public  booleanisInterface()
    
final public  booleanisSubclass(String cname)
     A more efficient version of isSubclass(ClassType.make(cname)).
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)
    
public  voidreadExternal(ObjectInput in)
    
public  ObjectreadResolve()
    
final public  voidsetAttributes(Attribute attributes)
    
public  voidsetClassfileVersion(int major, int minor)
    
public  voidsetClassfileVersionJava5()
    
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.
final public  FieldsetOuterLink(ClassType outer)
     Note that this class needs an other link ("this$0") field.
public  voidsetSourceFile(String name)
     Set the name of the SourceFile associated with this class.
public  voidsetStratum(String stratum)
     Create a SourceDebugExtAttr, if needed, and set the "stratum".
public  voidsetSuper(String name)
     Set the superclass of the is class.
public  voidsetSuper(ClassType superClass)
    
public  StringtoString()
    
public static  byte[]to_utf8(String str)
     Convert a String to a Utf8 byte array.
Parameters:
  str - the input String.
public  voidwriteExternal(ObjectOutput out)
    
public  byte[]writeToArray()
    
public  voidwriteToFile(String filename)
    
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)



classfileFormatVersion
int classfileFormatVersion(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)



methods
Method methods(Code)



methods_count
int methods_count(Code)



noClasses
final public static ClassType[] noClasses(Code)



sourceDbgExt
SourceDebugExtAttr sourceDbgExt(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)




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. Is not thread-safe if another thread may access this ClassType.



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(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().



cleanupAfterCompilation
public void cleanupAfterCompilation()(Code)
Clear various object references, to help garbage collection.



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.



getAttributes
final public Attribute getAttributes()(Code)



getClassfileMajorVersion
public short getClassfileMajorVersion()(Code)



getClassfileMinorVersion
public short getClassfileMinorVersion()(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)(Code)
Look for a matching method.
Parameters:
  name - method name
Parameters:
  arg_types - parameter types that must match.Can also be null, to match any parameter type list.Otherwise, an element of arg_types must be the same type (equals),though a null element of arg_types is a wildcard that matches any type.



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



getDeclaredMethods
final public synchronized Method getDeclaredMethods()(Code)



getField
public Field getField(String name, int mask)(Code)
Find a field with the given name declared in this class or its ancestors.
Parameters:
  name - the name of the field.
Parameters:
  mask - of match a field whose modifiers has one of these bits set.Howeve, if mask is -1, ignore the access flags. the matching field, or null if there is no such field.



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 synchronized Field getFields()(Code)
Get the fields of this class.



getInterfaces
public synchronized 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(java.lang.reflect.Method method)(Code)
Add a method to this ClassType. If an existing method matches, return that. Otherwise, create a new one.



getMethod
public Method getMethod(String name, Type[] arg_types)(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 searched 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 searched
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 searched
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.



getOuterLinkType
public ClassType getOuterLinkType()(Code)



getPackageName
public String getPackageName()(Code)



getSuperclass
public ClassType getSuperclass()(Code)



hasOuterLink
final public boolean hasOuterLink()(Code)



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



isAccessible
public boolean isAccessible(ClassType declaring, int modifiers)(Code)
Check if a component is accessible from this class.
Parameters:
  declaring - the class containing the component (a field, method,or inner class)
Parameters:
  modifiers - the access flags of the component true if the specified component can be accessed from this class.



isInterface
final public boolean isInterface()(Code)



isSubclass
final public boolean isSubclass(String cname)(Code)
A more efficient version of isSubclass(ClassType.make(cname)). Does not cause the named class be loaded if it hasn't been.
Parameters:
  cname - a class name - cannot be an interface name



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)



readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)



readResolve
public Object readResolve() throws ObjectStreamException(Code)



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



setClassfileVersion
public void setClassfileVersion(int major, int minor)(Code)



setClassfileVersionJava5
public void setClassfileVersionJava5()(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



setOuterLink
final public Field setOuterLink(ClassType outer)(Code)
Note that this class needs an other link ("this$0") field. This is only allowed if !isExisting(). Adjust any existing "" methods to take the extra implicit parameter.
Parameters:
  outer - the outer class



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



setStratum
public void setStratum(String stratum)(Code)
Create a SourceDebugExtAttr, if needed, and set the "stratum". The stratum is typically a programming language such as "JSP", "Scheme", or "Java" (the default).



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)



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.



writeExternal
public void writeExternal(ObjectOutput out) throws IOException(Code)



writeToArray
public byte[] writeToArray()(Code)



writeToFile
public void writeToFile(String filename) 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)
final static int HAS_OUTER_LINK(Code)(Java Doc)
public int flags(Code)(Java Doc)
static ClassLoader thisClassLoader(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 static Class getContextClass(String cname) throws java.lang.ClassNotFoundException(Code)(Java Doc)
public Type getImplementationType()(Code)(Java Doc)
public String getInternalName()(Code)(Java Doc)
public int getMethods(Filter filter, int searchSupers, Vector result, String context)(Code)(Java Doc)
public Class getReflectClass()(Code)(Java Doc)
final public boolean isExisting()(Code)(Java Doc)
public boolean isInstance(Object obj)(Code)(Java Doc)
public Type promote()(Code)(Java Doc)
final public void setExisting(boolean existing)(Code)(Java Doc)

Fields inherited from gnu.bytecode.Type
ArrayType array_type(Code)(Java Doc)
final public static Method booleanValue_method(Code)(Java Doc)
final public static ClassType boolean_ctype(Code)(Java Doc)
final public static PrimType boolean_type(Code)(Java Doc)
final public static PrimType byte_type(Code)(Java Doc)
final public static PrimType char_type(Code)(Java Doc)
final public static Method clone_method(Code)(Java Doc)
final public static Method doubleValue_method(Code)(Java Doc)
final public static PrimType double_type(Code)(Java Doc)
final public static Method floatValue_method(Code)(Java Doc)
final public static PrimType float_type(Code)(Java Doc)
final public static Method intValue_method(Code)(Java Doc)
final public static PrimType int_type(Code)(Java Doc)
final public static ClassType java_lang_Class_type(Code)(Java Doc)
final public static Method longValue_method(Code)(Java Doc)
final public static PrimType long_type(Code)(Java Doc)
static WeakHashMap mapClassToType(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)
final public static ClassType number_type(Code)(Java Doc)
final public static ClassType pointer_type(Code)(Java Doc)
protected Class reflectClass(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)
final public static ClassType throwable_type(Code)(Java Doc)
final public static Method toString_method(Code)(Java Doc)
final public static ClassType tostring_type(Code)(Java Doc)
final 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 emitCoerceFromObject(CodeAttr code)(Code)(Java Doc)
public void emitCoerceToObject(CodeAttr code)(Code)(Java Doc)
public void emitIsInstance(CodeAttr code)(Code)(Java Doc)
public Type getImplementationType()(Code)(Java Doc)
final 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 int getSizeInWords()(Code)(Java Doc)
public static Type getType(String name)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isInstance(Object obj)(Code)(Java Doc)
public static boolean isMoreSpecific(Type[] t1, Type[] t2)(Code)(Java Doc)
final 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 synchronized Type make(Class reflectClass)(Code)(Java Doc)
public Type promote()(Code)(Java Doc)
public static synchronized void registerTypeForClass(Class clas, Type type)(Code)(Java Doc)
protected void setName(String name)(Code)(Java Doc)
public void setReflectClass(java.lang.Class rclass)(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.