Uses of Class
net.sf.retrotranslator.runtime.asm.ClassWriter

Packages that use ClassWriter
net.sf.retrotranslator.runtime.asm   
 

Uses of ClassWriter in net.sf.retrotranslator.runtime.asm
 

Fields in net.sf.retrotranslator.runtime.asm declared as ClassWriter
private  ClassWriter AnnotationWriter.cw
          The class writer to which this annotation must be added.
private  ClassWriter FieldWriter.cw
          The class writer to which this field must be added.
(package private)  ClassWriter MethodWriter.cw
          The class writer to which this method must be added.
 

Methods in net.sf.retrotranslator.runtime.asm with parameters of type ClassWriter
(package private)  void ClassReader.copyPool(ClassWriter classWriter)
          Copies the constant pool data into the given ClassWriter.
(package private)  int Attribute.getSize(ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals)
          Returns the size of all the attributes in this attribute list.
(package private)  void Attribute.put(ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals, ByteVector out)
          Writes all the attributes of this attribute list in the given byte vector.
protected  ByteVector Attribute.write(ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals)
          Returns the byte array form of this attribute.
 

Constructors in net.sf.retrotranslator.runtime.asm with parameters of type ClassWriter
AnnotationWriter(ClassWriter cw, boolean named, ByteVector bv, ByteVector parent, int offset)
          Constructs a new AnnotationWriter.
FieldWriter(ClassWriter cw, int access, java.lang.String name, java.lang.String desc, java.lang.String signature, java.lang.Object value)
          Constructs a new FieldWriter.
MethodWriter(ClassWriter cw, int access, java.lang.String name, java.lang.String desc, java.lang.String signature, java.lang.String[] exceptions, boolean computeMaxs)
          Constructs a new MethodWriter.