net.sf.retrotranslator.transformer
Class GenericClassVisitor.GenericMethodVisitor

java.lang.Object
  extended by net.sf.retrotranslator.transformer.AbstractMethodVisitor
      extended by net.sf.retrotranslator.transformer.GenericClassVisitor.GenericMethodVisitor
All Implemented Interfaces:
MethodVisitor
Enclosing class:
GenericClassVisitor

private class GenericClassVisitor.GenericMethodVisitor
extends AbstractMethodVisitor


Field Summary
private  java.lang.String deferredConstant
           
 
Fields inherited from class net.sf.retrotranslator.transformer.AbstractMethodVisitor
mv
 
Constructor Summary
GenericClassVisitor.GenericMethodVisitor(MethodVisitor visitor)
           
 
Method Summary
protected  void flush()
           
 AnnotationVisitor visitAnnotation(java.lang.String desc, boolean visible)
          Visits an annotation of this method.
 AnnotationVisitor visitAnnotationDefault()
          Visits the default value of this annotation interface method.
 void visitFieldInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String desc)
          Visits a field instruction.
 void visitLdcInsn(java.lang.Object cst)
          Visits a LDC instruction.
 void visitLocalVariable(java.lang.String name, java.lang.String desc, java.lang.String signature, Label start, Label end, int index)
          Visits a local variable declaration.
 void visitMethodInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String desc)
          Visits a method instruction.
 void visitMultiANewArrayInsn(java.lang.String desc, int dims)
          Visits a MULTIANEWARRAY instruction.
 AnnotationVisitor visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)
          Visits an annotation of a parameter this method.
 void visitTryCatchBlock(Label start, Label end, Label handler, java.lang.String type)
          Visits a try catch block.
 void visitTypeInsn(int opcode, java.lang.String desc)
          Visits a type instruction.
 
Methods inherited from class net.sf.retrotranslator.transformer.AbstractMethodVisitor
visitAttribute, visitCode, visitEnd, visitIincInsn, visitInsn, visitIntInsn, visitJumpInsn, visitLabel, visitLineNumber, visitLookupSwitchInsn, visitMaxs, visitTableSwitchInsn, visitVarInsn
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

deferredConstant

private java.lang.String deferredConstant
Constructor Detail

GenericClassVisitor.GenericMethodVisitor

public GenericClassVisitor.GenericMethodVisitor(MethodVisitor visitor)
Method Detail

flush

protected void flush()
Specified by:
flush in class AbstractMethodVisitor

visitAnnotationDefault

public AnnotationVisitor visitAnnotationDefault()
Description copied from interface: MethodVisitor
Visits the default value of this annotation interface method.

Specified by:
visitAnnotationDefault in interface MethodVisitor
Overrides:
visitAnnotationDefault in class AbstractMethodVisitor
Returns:
a non null visitor to the visit the actual default value of this annotation interface method. The 'name' parameters passed to the methods of this annotation visitor are ignored. Moreover, exacly one visit method must be called on this annotation visitor, followed by visitEnd.

visitAnnotation

public AnnotationVisitor visitAnnotation(java.lang.String desc,
                                         boolean visible)
Description copied from interface: MethodVisitor
Visits an annotation of this method.

Specified by:
visitAnnotation in interface MethodVisitor
Overrides:
visitAnnotation in class AbstractMethodVisitor
Parameters:
desc - the class descriptor of the annotation class.
visible - true if the annotation is visible at runtime.
Returns:
a non null visitor to visit the annotation values.

visitParameterAnnotation

public AnnotationVisitor visitParameterAnnotation(int parameter,
                                                  java.lang.String desc,
                                                  boolean visible)
Description copied from interface: MethodVisitor
Visits an annotation of a parameter this method.

Specified by:
visitParameterAnnotation in interface MethodVisitor
Overrides:
visitParameterAnnotation in class AbstractMethodVisitor
Parameters:
parameter - the parameter index.
desc - the class descriptor of the annotation class.
visible - true if the annotation is visible at runtime.
Returns:
a non null visitor to visit the annotation values.

visitTypeInsn

public void visitTypeInsn(int opcode,
                          java.lang.String desc)
Description copied from interface: MethodVisitor
Visits a type instruction. A type instruction is an instruction that takes a type descriptor as parameter.

Specified by:
visitTypeInsn in interface MethodVisitor
Overrides:
visitTypeInsn in class AbstractMethodVisitor
Parameters:
opcode - the opcode of the type instruction to be visited. This opcode is either NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.
desc - the operand of the instruction to be visited. This operand is must be a fully qualified class name in internal form, or the type descriptor of an array type (see Type).

visitFieldInsn

public void visitFieldInsn(int opcode,
                           java.lang.String owner,
                           java.lang.String name,
                           java.lang.String desc)
Description copied from interface: MethodVisitor
Visits a field instruction. A field instruction is an instruction that loads or stores the value of a field of an object.

Specified by:
visitFieldInsn in interface MethodVisitor
Overrides:
visitFieldInsn in class AbstractMethodVisitor
Parameters:
opcode - the opcode of the type instruction to be visited. This opcode is either GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
owner - the internal name of the field's owner class (see getInternalName).
name - the field's name.
desc - the field's descriptor (see Type).

visitMethodInsn

public void visitMethodInsn(int opcode,
                            java.lang.String owner,
                            java.lang.String name,
                            java.lang.String desc)
Description copied from interface: MethodVisitor
Visits a method instruction. A method instruction is an instruction that invokes a method.

Specified by:
visitMethodInsn in interface MethodVisitor
Overrides:
visitMethodInsn in class AbstractMethodVisitor
Parameters:
opcode - the opcode of the type instruction to be visited. This opcode is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
owner - the internal name of the method's owner class (see getInternalName).
name - the method's name.
desc - the method's descriptor (see Type).

visitLdcInsn

public void visitLdcInsn(java.lang.Object cst)
Description copied from interface: MethodVisitor
Visits a LDC instruction.

Specified by:
visitLdcInsn in interface MethodVisitor
Overrides:
visitLdcInsn in class AbstractMethodVisitor
Parameters:
cst - the constant to be loaded on the stack. This parameter must be a non null Integer, a Float, a Long, a Double a String (or a Type for .class constants, for classes whose version is 49.0 or more).

visitMultiANewArrayInsn

public void visitMultiANewArrayInsn(java.lang.String desc,
                                    int dims)
Description copied from interface: MethodVisitor
Visits a MULTIANEWARRAY instruction.

Specified by:
visitMultiANewArrayInsn in interface MethodVisitor
Overrides:
visitMultiANewArrayInsn in class AbstractMethodVisitor
Parameters:
desc - an array type descriptor (see Type).
dims - number of dimensions of the array to allocate.

visitTryCatchBlock

public void visitTryCatchBlock(Label start,
                               Label end,
                               Label handler,
                               java.lang.String type)
Description copied from interface: MethodVisitor
Visits a try catch block.

Specified by:
visitTryCatchBlock in interface MethodVisitor
Overrides:
visitTryCatchBlock in class AbstractMethodVisitor
Parameters:
start - beginning of the exception handler's scope (inclusive).
end - end of the exception handler's scope (exclusive).
handler - beginning of the exception handler's code.
type - internal name of the type of exceptions handled by the handler, or null to catch any exceptions (for "finally" blocks).

visitLocalVariable

public void visitLocalVariable(java.lang.String name,
                               java.lang.String desc,
                               java.lang.String signature,
                               Label start,
                               Label end,
                               int index)
Description copied from interface: MethodVisitor
Visits a local variable declaration.

Specified by:
visitLocalVariable in interface MethodVisitor
Overrides:
visitLocalVariable in class AbstractMethodVisitor
Parameters:
name - the name of a local variable.
desc - the type descriptor of this local variable.
signature - the type signature of this local variable. May be null if the local variable type does not use generic types.
start - the first instruction corresponding to the scope of this local variable (inclusive).
end - the last instruction corresponding to the scope of this local variable (exclusive).
index - the local variable's index.