Package net.sf.cglib.core
Class ClassEmitter
- java.lang.Object
-
- org.objectweb.asm.ClassVisitor
-
- net.sf.cglib.transform.ClassTransformer
-
- net.sf.cglib.core.ClassEmitter
-
- Direct Known Subclasses:
ClassEmitterTransformer
public class ClassEmitter extends ClassTransformer
- Author:
- Juozas Baliuka, Chris Nokleberg
-
-
Constructor Summary
Constructors Constructor Description ClassEmitter()
ClassEmitter(org.objectweb.asm.ClassVisitor cv)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
begin_class(int version, int access, String className, org.objectweb.asm.Type superType, org.objectweb.asm.Type[] interfaces, String source)
CodeEmitter
begin_method(int access, Signature sig, org.objectweb.asm.Type[] exceptions)
CodeEmitter
begin_static()
void
declare_field(int access, String name, org.objectweb.asm.Type type, Object value)
void
end_class()
int
getAccess()
ClassInfo
getClassInfo()
org.objectweb.asm.Type
getClassType()
CodeEmitter
getStaticHook()
org.objectweb.asm.Type
getSuperType()
protected void
init()
void
setTarget(org.objectweb.asm.ClassVisitor cv)
void
visit(int version, int access, String name, String signature, String superName, String[] interfaces)
void
visitEnd()
org.objectweb.asm.FieldVisitor
visitField(int access, String name, String desc, String signature, Object value)
org.objectweb.asm.MethodVisitor
visitMethod(int access, String name, String desc, String signature, String[] exceptions)
-
-
-
Method Detail
-
setTarget
public void setTarget(org.objectweb.asm.ClassVisitor cv)
- Specified by:
setTarget
in classClassTransformer
-
getClassInfo
public ClassInfo getClassInfo()
-
begin_class
public void begin_class(int version, int access, String className, org.objectweb.asm.Type superType, org.objectweb.asm.Type[] interfaces, String source)
-
getStaticHook
public CodeEmitter getStaticHook()
-
init
protected void init()
-
getAccess
public int getAccess()
-
getClassType
public org.objectweb.asm.Type getClassType()
-
getSuperType
public org.objectweb.asm.Type getSuperType()
-
end_class
public void end_class()
-
begin_method
public CodeEmitter begin_method(int access, Signature sig, org.objectweb.asm.Type[] exceptions)
-
begin_static
public CodeEmitter begin_static()
-
declare_field
public void declare_field(int access, String name, org.objectweb.asm.Type type, Object value)
-
visit
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
- Overrides:
visit
in classorg.objectweb.asm.ClassVisitor
-
visitEnd
public void visitEnd()
- Overrides:
visitEnd
in classorg.objectweb.asm.ClassVisitor
-
visitField
public org.objectweb.asm.FieldVisitor visitField(int access, String name, String desc, String signature, Object value)
- Overrides:
visitField
in classorg.objectweb.asm.ClassVisitor
-
-