Package net.sf.cglib.proxy
Class CallbackInfo
- java.lang.Object
-
- net.sf.cglib.proxy.CallbackInfo
-
class CallbackInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private static CallbackInfo[]
CALLBACKS
private java.lang.Class
cls
private CallbackGenerator
generator
private org.objectweb.asm.Type
type
-
Constructor Summary
Constructors Modifier Constructor Description private
CallbackInfo(java.lang.Class cls, CallbackGenerator generator)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description private static org.objectweb.asm.Type
determineType(java.lang.Class callbackType, boolean checkAll)
private static org.objectweb.asm.Type
determineType(Callback callback, boolean checkAll)
static org.objectweb.asm.Type[]
determineTypes(java.lang.Class[] callbackTypes)
static org.objectweb.asm.Type[]
determineTypes(java.lang.Class[] callbackTypes, boolean checkAll)
static org.objectweb.asm.Type[]
determineTypes(Callback[] callbacks)
static org.objectweb.asm.Type[]
determineTypes(Callback[] callbacks, boolean checkAll)
private static CallbackGenerator
getGenerator(org.objectweb.asm.Type callbackType)
static CallbackGenerator[]
getGenerators(org.objectweb.asm.Type[] callbackTypes)
-
-
-
Field Detail
-
cls
private java.lang.Class cls
-
generator
private CallbackGenerator generator
-
type
private org.objectweb.asm.Type type
-
CALLBACKS
private static final CallbackInfo[] CALLBACKS
-
-
Constructor Detail
-
CallbackInfo
private CallbackInfo(java.lang.Class cls, CallbackGenerator generator)
-
-
Method Detail
-
determineTypes
public static org.objectweb.asm.Type[] determineTypes(java.lang.Class[] callbackTypes)
-
determineTypes
public static org.objectweb.asm.Type[] determineTypes(java.lang.Class[] callbackTypes, boolean checkAll)
-
determineTypes
public static org.objectweb.asm.Type[] determineTypes(Callback[] callbacks)
-
determineTypes
public static org.objectweb.asm.Type[] determineTypes(Callback[] callbacks, boolean checkAll)
-
getGenerators
public static CallbackGenerator[] getGenerators(org.objectweb.asm.Type[] callbackTypes)
-
determineType
private static org.objectweb.asm.Type determineType(Callback callback, boolean checkAll)
-
determineType
private static org.objectweb.asm.Type determineType(java.lang.Class callbackType, boolean checkAll)
-
getGenerator
private static CallbackGenerator getGenerator(org.objectweb.asm.Type callbackType)
-
-