Java Doc for JParameterizedType.java in  » Ajax » GWT » com » google » gwt » core » ext » typeinfo » 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 » Ajax » GWT » com.google.gwt.core.ext.typeinfo 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.google.gwt.core.ext.typeinfo.JType
      com.google.gwt.core.ext.typeinfo.JClassType
         com.google.gwt.core.ext.typeinfo.JDelegatingClassType
            com.google.gwt.core.ext.typeinfo.JParameterizedType

JParameterizedType
public class JParameterizedType extends JDelegatingClassType (Code)
Represents a parameterized type in a declaration.



Constructor Summary
public  JParameterizedType(JGenericType baseType, JClassType enclosingType, JClassType[] typeArgs)
    

Method Summary
public  JConstructorfindConstructor(JType[] paramTypes)
    
public  JFieldfindField(String name)
    
public  JMethodfindMethod(String name, JType[] paramTypes)
    
public  JClassTypefindNestedType(String typeName)
    
protected  JClassTypefindNestedTypeImpl(String[] typeName, int index)
    
public  JGenericTypegetBaseType()
    
public  JConstructorgetConstructor(JType[] paramTypes)
    
public  JConstructor[]getConstructors()
    
public  JClassTypegetEnclosingType()
    
public  JFieldgetField(String name)
    
public  JField[]getFields()
    
public  JClassType[]getImplementedInterfaces()
    
public  JMethodgetMethod(String name, JType[] paramTypes)
    
public  JMethod[]getMethods()
    
public  JClassTypegetNestedType(String typeName)
    
public  JClassType[]getNestedTypes()
    
public  StringgetNonParameterizedQualifiedSourceName()
    
public  JMethod[]getOverloads(String name)
    
public  JMethod[]getOverridableMethods()
    
protected  voidgetOverridableMethodsOnSuperclassesAndThisClass(Map<String, JMethod> methodsBySignature)
    
protected  voidgetOverridableMethodsOnSuperinterfacesAndMaybeThisInterface(Map<String, JMethod> methodsBySignature)
     Gets the methods declared in interfaces that this type extends.
public  StringgetParameterizedQualifiedSourceName()
    
public  StringgetQualifiedSourceName()
     Everything is fully qualified and includes the < and > in the signature.
public  JClassTypegetRawType()
    
public  StringgetSimpleSourceName()
     In this case, the raw type name.
 JClassTypegetSubstitutedType(JParameterizedType parameterizedType)
    
public  JClassType[]getSubtypes()
    
public  JClassTypegetSuperclass()
    
public  JClassType[]getTypeArgs()
    
 JClassTypegetTypeParameterSubstitution(JTypeParameter typeParameter)
     Returns the JClassType that is a substitute for the given JTypeParameter .
 booleanhasTypeArgs(JClassType[] otherArgTypes)
    
public  booleanisAssignableFrom(JClassType otherType)
    
public  booleanisAssignableTo(JClassType otherType)
    
public  JGenericTypeisGenericType()
    
public  JParameterizedTypeisParameterized()
    
public  JRawTypeisRawType()
    
public  JWildcardTypeisWildcard()
    
 voidmaybeInitializeTypeParameterSubstitutionMap()
     Initialize a map of substitutions for JTypeParameter s to corresponding JClassType s.
public  voidsetTypeArguments(JClassType[] typeArgs)
    
public  StringtoString()
    


Constructor Detail
JParameterizedType
public JParameterizedType(JGenericType baseType, JClassType enclosingType, JClassType[] typeArgs)(Code)




Method Detail
findConstructor
public JConstructor findConstructor(JType[] paramTypes)(Code)



findField
public JField findField(String name)(Code)



findMethod
public JMethod findMethod(String name, JType[] paramTypes)(Code)



findNestedType
public JClassType findNestedType(String typeName)(Code)



findNestedTypeImpl
protected JClassType findNestedTypeImpl(String[] typeName, int index)(Code)



getBaseType
public JGenericType getBaseType()(Code)



getConstructor
public JConstructor getConstructor(JType[] paramTypes) throws NotFoundException(Code)



getConstructors
public JConstructor[] getConstructors()(Code)



getEnclosingType
public JClassType getEnclosingType()(Code)



getField
public JField getField(String name)(Code)



getFields
public JField[] getFields()(Code)



getImplementedInterfaces
public JClassType[] getImplementedInterfaces()(Code)



getMethod
public JMethod getMethod(String name, JType[] paramTypes) throws NotFoundException(Code)



getMethods
public JMethod[] getMethods()(Code)



getNestedType
public JClassType getNestedType(String typeName) throws NotFoundException(Code)



getNestedTypes
public JClassType[] getNestedTypes()(Code)



getNonParameterizedQualifiedSourceName
public String getNonParameterizedQualifiedSourceName()(Code)
JParameterizedType.getQualifiedSourceName()



getOverloads
public JMethod[] getOverloads(String name)(Code)



getOverridableMethods
public JMethod[] getOverridableMethods()(Code)



getOverridableMethodsOnSuperclassesAndThisClass
protected void getOverridableMethodsOnSuperclassesAndThisClass(Map<String, JMethod> methodsBySignature)(Code)



getOverridableMethodsOnSuperinterfacesAndMaybeThisInterface
protected void getOverridableMethodsOnSuperinterfacesAndMaybeThisInterface(Map<String, JMethod> methodsBySignature)(Code)
Gets the methods declared in interfaces that this type extends. If this type is a class, its own methods are not added. If this type is an interface, its own methods are added. Used internally by JParameterizedType.getOverridableMethods() .
Parameters:
  methodsBySignature -



getParameterizedQualifiedSourceName
public String getParameterizedQualifiedSourceName()(Code)



getQualifiedSourceName
public String getQualifiedSourceName()(Code)
Everything is fully qualified and includes the < and > in the signature.



getRawType
public JClassType getRawType()(Code)



getSimpleSourceName
public String getSimpleSourceName()(Code)
In this case, the raw type name.



getSubstitutedType
JClassType getSubstitutedType(JParameterizedType parameterizedType)(Code)



getSubtypes
public JClassType[] getSubtypes()(Code)



getSuperclass
public JClassType getSuperclass()(Code)



getTypeArgs
public JClassType[] getTypeArgs()(Code)



getTypeParameterSubstitution
JClassType getTypeParameterSubstitution(JTypeParameter typeParameter)(Code)
Returns the JClassType that is a substitute for the given JTypeParameter . If there is no substitution, the original JTypeParameter is returned.



hasTypeArgs
boolean hasTypeArgs(JClassType[] otherArgTypes)(Code)



isAssignableFrom
public boolean isAssignableFrom(JClassType otherType)(Code)



isAssignableTo
public boolean isAssignableTo(JClassType otherType)(Code)



isGenericType
public JGenericType isGenericType()(Code)



isParameterized
public JParameterizedType isParameterized()(Code)



isRawType
public JRawType isRawType()(Code)



isWildcard
public JWildcardType isWildcard()(Code)



maybeInitializeTypeParameterSubstitutionMap
void maybeInitializeTypeParameterSubstitutionMap()(Code)
Initialize a map of substitutions for JTypeParameter s to corresponding JClassType s. This can only be initialized after the com.google.gwt.dev.jdt.TypeOracleBuilder TypeOracleBuilder has fully resolved all of the JClassType s.



setTypeArguments
public void setTypeArguments(JClassType[] typeArgs)(Code)



toString
public String toString()(Code)



Methods inherited from com.google.gwt.core.ext.typeinfo.JDelegatingClassType
protected void acceptSubtype(JClassType me)(Code)(Java Doc)
final void addConstructor(JConstructor ctor)(Code)(Java Doc)
final void addField(JField field)(Code)(Java Doc)
final public void addImplementedInterface(JClassType intf)(Code)(Java Doc)
final public void addMetaData(String tagName, String[] values)(Code)(Java Doc)
final void addMethod(JMethod method)(Code)(Java Doc)
final public void addModifierBits(int bits)(Code)(Java Doc)
final void addNestedType(JClassType type)(Code)(Java Doc)
public JConstructor findConstructor(JType[] paramTypes)(Code)(Java Doc)
abstract public JField findField(String name)(Code)(Java Doc)
abstract public JMethod findMethod(String name, JType[] paramTypes)(Code)(Java Doc)
public JClassType findNestedType(String typeName)(Code)(Java Doc)
JClassType findNestedTypeImpl(String[] typeName, int index)(Code)(Java Doc)
public T getAnnotation(Class<T> annotationClass)(Code)(Java Doc)
public Annotation[] getAnnotations()(Code)(Java Doc)
public JClassType getBaseType()(Code)(Java Doc)
public int getBodyEnd()(Code)(Java Doc)
public int getBodyStart()(Code)(Java Doc)
public CompilationUnitProvider getCompilationUnit()(Code)(Java Doc)
public JConstructor getConstructor(JType[] paramTypes) throws NotFoundException(Code)(Java Doc)
public JConstructor[] getConstructors()(Code)(Java Doc)
public Annotation[] getDeclaredAnnotations()(Code)(Java Doc)
public JClassType getEnclosingType()(Code)(Java Doc)
public JClassType getErasedType()(Code)(Java Doc)
abstract public JField getField(String name)(Code)(Java Doc)
abstract public JField[] getFields()(Code)(Java Doc)
public JClassType[] getImplementedInterfaces()(Code)(Java Doc)
public String getJNISignature()(Code)(Java Doc)
public String[][] getMetaData(String tagName)(Code)(Java Doc)
public String[] getMetaDataTags()(Code)(Java Doc)
abstract public JMethod getMethod(String name, JType[] paramTypes) throws NotFoundException(Code)(Java Doc)
abstract public JMethod[] getMethods()(Code)(Java Doc)
protected int getModifierBits()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public JClassType getNestedType(String typeName) throws NotFoundException(Code)(Java Doc)
public JClassType[] getNestedTypes()(Code)(Java Doc)
public TypeOracle getOracle()(Code)(Java Doc)
public JMethod[] getOverloads(String name)(Code)(Java Doc)
public JMethod[] getOverridableMethods()(Code)(Java Doc)
protected void getOverridableMethodsOnSuperclassesAndThisClass(Map<String, JMethod> methodsBySignature)(Code)(Java Doc)
protected void getOverridableMethodsOnSuperinterfacesAndMaybeThisInterface(Map<String, JMethod> methodsBySignature)(Code)(Java Doc)
public JPackage getPackage()(Code)(Java Doc)
public JClassType[] getSubtypes()(Code)(Java Doc)
public JClassType getSuperclass()(Code)(Java Doc)
public String getTypeHash() throws UnableToCompleteException(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isAbstract()(Code)(Java Doc)
public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)(Code)(Java Doc)
final public JArrayType isArray()(Code)(Java Doc)
public boolean isAssignableFrom(JClassType possibleSubtype)(Code)(Java Doc)
public boolean isAssignableTo(JClassType possibleSupertype)(Code)(Java Doc)
public JClassType isClass()(Code)(Java Doc)
public JClassType isClassOrInterface()(Code)(Java Doc)
public boolean isDefaultInstantiable()(Code)(Java Doc)
final public JEnumType isEnum()(Code)(Java Doc)
public JClassType isInterface()(Code)(Java Doc)
public boolean isLocalType()(Code)(Java Doc)
public boolean isMemberType()(Code)(Java Doc)
final public JPrimitiveType isPrimitive()(Code)(Java Doc)
public boolean isPrivate()(Code)(Java Doc)
public boolean isProtected()(Code)(Java Doc)
public boolean isPublic()(Code)(Java Doc)
public boolean isStatic()(Code)(Java Doc)
void notifySuperTypes()(Code)(Java Doc)
protected void notifySuperTypesOf(JClassType me)(Code)(Java Doc)
void removeFromSupertypes()(Code)(Java Doc)
protected void removeSubtype(JClassType me)(Code)(Java Doc)
final void setBaseType(JClassType baseType)(Code)(Java Doc)
public void setSuperclass(JClassType type)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from com.google.gwt.core.ext.typeinfo.JClassType
abstract protected void acceptSubtype(JClassType me)(Code)(Java Doc)
abstract void addConstructor(JConstructor ctor)(Code)(Java Doc)
abstract void addField(JField field)(Code)(Java Doc)
abstract public void addImplementedInterface(JClassType intf)(Code)(Java Doc)
abstract public void addMetaData(String tagName, String[] values)(Code)(Java Doc)
abstract void addMethod(JMethod method)(Code)(Java Doc)
abstract public void addModifierBits(int bits)(Code)(Java Doc)
abstract void addNestedType(JClassType type)(Code)(Java Doc)
abstract public JConstructor findConstructor(JType[] paramTypes)(Code)(Java Doc)
abstract public JField findField(String name)(Code)(Java Doc)
abstract public JMethod findMethod(String name, JType[] paramTypes)(Code)(Java Doc)
abstract public JClassType findNestedType(String typeName)(Code)(Java Doc)
abstract JClassType findNestedTypeImpl(String[] typeName, int index)(Code)(Java Doc)
abstract public T getAnnotation(Class<T> annotationClass)(Code)(Java Doc)
abstract public Annotation[] getAnnotations()(Code)(Java Doc)
abstract public int getBodyEnd()(Code)(Java Doc)
abstract public int getBodyStart()(Code)(Java Doc)
abstract public CompilationUnitProvider getCompilationUnit()(Code)(Java Doc)
abstract public JConstructor getConstructor(JType[] paramTypes) throws NotFoundException(Code)(Java Doc)
abstract public JConstructor[] getConstructors()(Code)(Java Doc)
abstract public Annotation[] getDeclaredAnnotations()(Code)(Java Doc)
abstract public JClassType getEnclosingType()(Code)(Java Doc)
abstract public JClassType getErasedType()(Code)(Java Doc)
abstract public JField getField(String name)(Code)(Java Doc)
abstract public JField[] getFields()(Code)(Java Doc)
protected static Set<JClassType> getFlattenedSuperTypeHierarchy(JClassType type)(Code)(Java Doc)
abstract public JClassType[] getImplementedInterfaces()(Code)(Java Doc)
abstract public String[][] getMetaData(String tagName)(Code)(Java Doc)
abstract public String[] getMetaDataTags()(Code)(Java Doc)
abstract public JMethod getMethod(String name, JType[] paramTypes) throws NotFoundException(Code)(Java Doc)
abstract public JMethod[] getMethods()(Code)(Java Doc)
abstract protected int getModifierBits()(Code)(Java Doc)
abstract public String getName()(Code)(Java Doc)
abstract public JClassType getNestedType(String typeName) throws NotFoundException(Code)(Java Doc)
abstract public JClassType[] getNestedTypes()(Code)(Java Doc)
abstract public TypeOracle getOracle()(Code)(Java Doc)
abstract public JMethod[] getOverloads(String name)(Code)(Java Doc)
abstract public JMethod[] getOverridableMethods()(Code)(Java Doc)
abstract protected void getOverridableMethodsOnSuperclassesAndThisClass(Map<String, JMethod> methodsBySignature)(Code)(Java Doc)
abstract protected void getOverridableMethodsOnSuperinterfacesAndMaybeThisInterface(Map<String, JMethod> methodsBySignature)(Code)(Java Doc)
abstract public JPackage getPackage()(Code)(Java Doc)
abstract JClassType getSubstitutedType(JParameterizedType parameterizedType)(Code)(Java Doc)
abstract public JClassType[] getSubtypes()(Code)(Java Doc)
abstract public JClassType getSuperclass()(Code)(Java Doc)
abstract public String getTypeHash() throws UnableToCompleteException(Code)(Java Doc)
abstract public boolean isAbstract()(Code)(Java Doc)
abstract public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)(Code)(Java Doc)
abstract public boolean isAssignableFrom(JClassType possibleSubtype)(Code)(Java Doc)
abstract public boolean isAssignableTo(JClassType possibleSupertype)(Code)(Java Doc)
abstract public boolean isDefaultInstantiable()(Code)(Java Doc)
abstract public JGenericType isGenericType()(Code)(Java Doc)
abstract public JClassType isInterface()(Code)(Java Doc)
abstract public boolean isLocalType()(Code)(Java Doc)
abstract public boolean isMemberType()(Code)(Java Doc)
abstract public boolean isPrivate()(Code)(Java Doc)
abstract public boolean isProtected()(Code)(Java Doc)
abstract public boolean isPublic()(Code)(Java Doc)
abstract public boolean isStatic()(Code)(Java Doc)
final protected String makeCompoundName(JClassType type)(Code)(Java Doc)
protected static JClassType maybeGetGenericBaseType(JClassType otherType)(Code)(Java Doc)
abstract void notifySuperTypes()(Code)(Java Doc)
abstract protected void notifySuperTypesOf(JClassType me)(Code)(Java Doc)
abstract void removeFromSupertypes()(Code)(Java Doc)
abstract protected void removeSubtype(JClassType me)(Code)(Java Doc)
abstract public void setSuperclass(JClassType type)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from com.google.gwt.core.ext.typeinfo.JType
abstract public JType getErasedType()(Code)(Java Doc)
abstract public String getJNISignature()(Code)(Java Doc)
public JType getLeafType()(Code)(Java Doc)
public String getParameterizedQualifiedSourceName()(Code)(Java Doc)
abstract public String getQualifiedSourceName()(Code)(Java Doc)
abstract public String getSimpleSourceName()(Code)(Java Doc)
abstract JType getSubstitutedType(JParameterizedType parameterizedType)(Code)(Java Doc)
public JAnnotationType isAnnotation()(Code)(Java Doc)
abstract public JArrayType isArray()(Code)(Java Doc)
abstract public JClassType isClass()(Code)(Java Doc)
public JClassType isClassOrInterface()(Code)(Java Doc)
abstract public JEnumType isEnum()(Code)(Java Doc)
abstract public JGenericType isGenericType()(Code)(Java Doc)
abstract public JClassType isInterface()(Code)(Java Doc)
abstract public JParameterizedType isParameterized()(Code)(Java Doc)
abstract public JPrimitiveType isPrimitive()(Code)(Java Doc)
abstract public JRawType isRawType()(Code)(Java Doc)
public JTypeParameter isTypeParameter()(Code)(Java Doc)
abstract public JWildcardType isWildcard()(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.