net.sf.cglib.core
Class ClassEmitter
java.lang.Object
org.objectweb.asm.ClassAdapter
net.sf.cglib.core.ClassEmitter
- All Implemented Interfaces:
- org.objectweb.asm.ClassVisitor
- Direct Known Subclasses:
- ClassEmitterTransformer
public class ClassEmitter
- extends org.objectweb.asm.ClassAdapter
- Author:
- Juozas Baliuka, Chris Nokleberg
| Fields inherited from class org.objectweb.asm.ClassAdapter |
cv |
|
Method Summary |
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)
|
| Methods inherited from class org.objectweb.asm.ClassAdapter |
visitAnnotation, visitAttribute, visitInnerClass, visitOuterClass, visitSource |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ClassEmitter
public ClassEmitter(org.objectweb.asm.ClassVisitor cv)
ClassEmitter
public ClassEmitter()
setTarget
public void setTarget(org.objectweb.asm.ClassVisitor cv)
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)
- Specified by:
visit in interface org.objectweb.asm.ClassVisitor- Overrides:
visit in class org.objectweb.asm.ClassAdapter
visitEnd
public void visitEnd()
- Specified by:
visitEnd in interface org.objectweb.asm.ClassVisitor- Overrides:
visitEnd in class org.objectweb.asm.ClassAdapter
visitField
public org.objectweb.asm.FieldVisitor visitField(int access,
String name,
String desc,
String signature,
Object value)
- Specified by:
visitField in interface org.objectweb.asm.ClassVisitor- Overrides:
visitField in class org.objectweb.asm.ClassAdapter
visitMethod
public org.objectweb.asm.MethodVisitor visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
- Specified by:
visitMethod in interface org.objectweb.asm.ClassVisitor- Overrides:
visitMethod in class org.objectweb.asm.ClassAdapter
Copyright © 2012 Oracle Corporation. All Rights Reserved.