|
GWT 2.1.1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JMethod | |
---|---|
com.google.gwt.core.ext.typeinfo | Type-introspection support classes used by generators. |
com.google.gwt.resources.ext | This package contains extension hooks for adding new resource types to ClientBundle. |
Uses of JMethod in com.google.gwt.core.ext.typeinfo |
---|
Subclasses of JMethod in com.google.gwt.core.ext.typeinfo | |
---|---|
class |
JAnnotationMethod
Method declared on an annotation type. |
Methods in com.google.gwt.core.ext.typeinfo that return JMethod | |
---|---|
JMethod |
JWildcardType.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JTypeParameter.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JRealClassType.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JRawType.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JParameterizedType.findMethod(java.lang.String name,
JType[] paramTypes)
|
abstract JMethod |
JClassType.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JArrayType.findMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod[] |
JRealClassType.getInheritableMethods()
|
JMethod[] |
JRawType.getInheritableMethods()
|
JMethod[] |
JParameterizedType.getInheritableMethods()
|
abstract JMethod[] |
JClassType.getInheritableMethods()
Iterates over the most-derived declaration of each unique inheritable method available in the type hierarchy of the specified type, including those found in superclasses and superinterfaces. |
JMethod[] |
JArrayType.getInheritableMethods()
|
JMethod |
JWildcardType.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JTypeParameter.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JRealClassType.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JRawType.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JParameterizedType.getMethod(java.lang.String name,
JType[] paramTypes)
|
abstract JMethod |
JClassType.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod |
JArrayType.getMethod(java.lang.String name,
JType[] paramTypes)
|
JMethod[] |
JWildcardType.getMethods()
|
JMethod[] |
JTypeParameter.getMethods()
|
JMethod[] |
JRealClassType.getMethods()
|
JMethod[] |
JRawType.getMethods()
|
JMethod[] |
JParameterizedType.getMethods()
|
abstract JMethod[] |
JClassType.getMethods()
|
JMethod[] |
JArrayType.getMethods()
|
JMethod[] |
JRealClassType.getOverloads(java.lang.String name)
|
JMethod[] |
JRawType.getOverloads(java.lang.String name)
|
JMethod[] |
JParameterizedType.getOverloads(java.lang.String name)
|
abstract JMethod[] |
JClassType.getOverloads(java.lang.String name)
|
JMethod[] |
JArrayType.getOverloads(java.lang.String name)
|
JMethod[] |
JRealClassType.getOverridableMethods()
|
JMethod[] |
JRawType.getOverridableMethods()
|
JMethod[] |
JParameterizedType.getOverridableMethods()
|
abstract JMethod[] |
JClassType.getOverridableMethods()
Iterates over the most-derived declaration of each unique overridable method available in the type hierarchy of the specified type, including those found in superclasses and superinterfaces. |
JMethod[] |
JArrayType.getOverridableMethods()
|
JMethod |
JMethod.isMethod()
|
JMethod |
JConstructor.isMethod()
|
abstract JMethod |
JAbstractMethod.isMethod()
|
protected JMethod |
TypeOracleBuilder.newMethod(JClassType type,
java.lang.String name,
java.util.Map<java.lang.Class<? extends java.lang.annotation.Annotation>,java.lang.annotation.Annotation> declaredAnnotations,
JTypeParameter[] typeParams)
|
Methods in com.google.gwt.core.ext.typeinfo with parameters of type JMethod | |
---|---|
protected void |
JRealClassType.addMethod(JMethod method)
|
static void |
TypeOracle.sort(JMethod[] methods)
Convenience method to sort methods in a consistent way. |
Method parameters in com.google.gwt.core.ext.typeinfo with type arguments of type JMethod | |
---|---|
protected void |
JRealClassType.getInheritableMethodsOnSuperclassesAndThisClass(java.util.Map<java.lang.String,JMethod> methodsBySignature)
|
protected void |
JParameterizedType.getInheritableMethodsOnSuperclassesAndThisClass(java.util.Map<java.lang.String,JMethod> methodsBySignature)
|
protected abstract void |
JClassType.getInheritableMethodsOnSuperclassesAndThisClass(java.util.Map<java.lang.String,JMethod> methodsBySignature)
|
protected void |
JArrayType.getInheritableMethodsOnSuperclassesAndThisClass(java.util.Map<java.lang.String,JMethod> methodsBySignature)
|
protected void |
JRealClassType.getInheritableMethodsOnSuperinterfacesAndMaybeThisInterface(java.util.Map<java.lang.String,JMethod> methodsBySignature)
Gets the methods declared in interfaces that this type extends. |
protected void |
JParameterizedType.getInheritableMethodsOnSuperinterfacesAndMaybeThisInterface(java.util.Map<java.lang.String,JMethod> methodsBySignature)
Gets the methods declared in interfaces that this type extends. |
protected abstract void |
JClassType.getInheritableMethodsOnSuperinterfacesAndMaybeThisInterface(java.util.Map<java.lang.String,JMethod> methodsBySignature)
Gets the methods declared in interfaces that this type extends. |
protected void |
JArrayType.getInheritableMethodsOnSuperinterfacesAndMaybeThisInterface(java.util.Map<java.lang.String,JMethod> methodsBySignature)
|
Uses of JMethod in com.google.gwt.resources.ext |
---|
Methods in com.google.gwt.resources.ext that return JMethod | |
---|---|
static JMethod |
ResourceGeneratorUtil.getMethodByPath(JClassType rootType,
java.util.List<java.lang.String> pathElements,
JType expectedReturnType)
Finds a method by following a dotted path interpreted as a series of no-arg method invocations from an instance of a given root type. |
Methods in com.google.gwt.resources.ext with parameters of type JMethod | |
---|---|
java.lang.String |
ResourceGenerator.createAssignment(TreeLogger logger,
ResourceContext context,
JMethod method)
Produce the right-hand-side of a Java assignment expression to provide the singleton instance object for a particular resource. |
abstract java.lang.String |
AbstractResourceGenerator.createAssignment(TreeLogger logger,
ResourceContext context,
JMethod method)
|
static java.net.URL[] |
ResourceGeneratorUtil.findResources(TreeLogger logger,
java.lang.ClassLoader classLoader,
ResourceContext context,
JMethod method,
java.lang.String[] defaultSuffixes)
Find all resources referenced by a method in a bundle. |
static java.net.URL[] |
ResourceGeneratorUtil.findResources(TreeLogger logger,
ResourceContext context,
JMethod method)
Find all resources referenced by a method in a bundle. |
static java.net.URL[] |
ResourceGeneratorUtil.findResources(TreeLogger logger,
ResourceContext context,
JMethod method,
java.lang.String[] defaultSuffixes)
Find all resources referenced by a method in a bundle. |
void |
ResourceGenerator.prepare(TreeLogger logger,
ResourceContext context,
ClientBundleRequirements requirements,
JMethod method)
Called once for each method the ResourceGenerator is expected to handle. |
void |
AbstractResourceGenerator.prepare(TreeLogger logger,
ResourceContext context,
ClientBundleRequirements requirements,
JMethod method)
A no-op implementation. |
|
GWT 2.1.1 | |||||||||
PREV NEXT | FRAMES NO FRAMES |