Uses of Interface
org.glassfish.pfl.dynamic.codegen.spi.MethodInfo
-
Packages that use MethodInfo Package Description org.glassfish.pfl.dynamic.codegen.impl org.glassfish.pfl.dynamic.codegen.spi -
-
Uses of MethodInfo in org.glassfish.pfl.dynamic.codegen.impl
Classes in org.glassfish.pfl.dynamic.codegen.impl that implement MethodInfo Modifier and Type Class Description class
MethodGenerator
class
MethodInfoBase
class
MethodInfoReflectiveImpl
Implementation of MethodInfo interface for actual Method.Fields in org.glassfish.pfl.dynamic.codegen.impl with type parameters of type MethodInfo Modifier and Type Field Description private java.util.Set<MethodInfo>
ClassInfoBase. constructors
private java.util.Map<java.lang.String,java.util.Set<MethodInfo>>
ClassInfoBase. methodInfoByName
Methods in org.glassfish.pfl.dynamic.codegen.impl that return MethodInfo Modifier and Type Method Description MethodInfo
ClassInfoBase. findConstructorInfo(Signature sig)
MethodInfo
ClassInfoBase. findMethodInfo(java.lang.String name, Signature sig)
private MethodInfo
ClassInfoBase. findMethodInfo(Signature sig, java.util.Set<MethodInfo> minfos)
Methods in org.glassfish.pfl.dynamic.codegen.impl that return types with arguments of type MethodInfo Modifier and Type Method Description java.util.Set<MethodInfo>
ClassGeneratorImpl. constructorInfo()
java.util.Set<MethodInfo>
ClassInfoBase. constructorInfo()
java.util.Map<java.lang.String,java.util.Set<MethodInfo>>
ClassInfoBase. methodInfoByName()
Methods in org.glassfish.pfl.dynamic.codegen.impl with parameters of type MethodInfo Modifier and Type Method Description protected void
ClassInfoBase. addConstructorInfo(MethodInfo cinfo)
protected void
ClassInfoBase. addMethodInfo(MethodInfo minfo)
Method parameters in org.glassfish.pfl.dynamic.codegen.impl with type arguments of type MethodInfo Modifier and Type Method Description private MethodInfo
ClassInfoBase. findMethodInfo(Signature sig, java.util.Set<MethodInfo> minfos)
-
Uses of MethodInfo in org.glassfish.pfl.dynamic.codegen.spi
Subinterfaces of MethodInfo in org.glassfish.pfl.dynamic.codegen.spi Modifier and Type Interface Description interface
ModifiableMethod
Modify an existing method.Methods in org.glassfish.pfl.dynamic.codegen.spi that return MethodInfo Modifier and Type Method Description MethodInfo
ClassInfo. findConstructorInfo(Signature sig)
Find the MethodInfo (if any) for a Constructor with the given Signature in this ClassInfo.MethodInfo
ClassInfo. findMethodInfo(java.lang.String name, Signature sig)
Find the method (if any) with the given name and Signature in this ClassInfo, or in any superType of this ClassInfo.static MethodInfo
Utility. getMethodInfo(java.lang.reflect.Method method)
MethodInfo
ModifiableFieldReference. method()
private static MethodInfo
Signature. returnCompatibleMethod(Type type, java.lang.String ident, java.util.List<Type> argTypes, Signature.CallType ctype, java.util.Set<MethodInfo> compatibleMethods)
Methods in org.glassfish.pfl.dynamic.codegen.spi that return types with arguments of type MethodInfo Modifier and Type Method Description java.util.Set<MethodInfo>
ClassInfo. constructorInfo()
private static java.util.Set<MethodInfo>
Signature. getCompatibleMethods(java.util.Set<MethodInfo> methods, java.util.List<Type> argTypes)
private static java.util.Set<MethodInfo>
Signature. getMethods(Type type, java.lang.String ident, boolean staticOnly)
java.util.Map<java.lang.String,java.util.Set<MethodInfo>>
ClassInfo. methodInfoByName()
Return methodInfo for all methods defined on this class.Method parameters in org.glassfish.pfl.dynamic.codegen.spi with type arguments of type MethodInfo Modifier and Type Method Description private static java.util.Set<MethodInfo>
Signature. getCompatibleMethods(java.util.Set<MethodInfo> methods, java.util.List<Type> argTypes)
private static java.lang.String
Signature. getMethodListString(java.util.Set<MethodInfo> mlist)
private static MethodInfo
Signature. returnCompatibleMethod(Type type, java.lang.String ident, java.util.List<Type> argTypes, Signature.CallType ctype, java.util.Set<MethodInfo> compatibleMethods)
private boolean
Type. returnTypeCollision(java.util.Set<MethodInfo> set1, java.util.Set<MethodInfo> set2)
-