org.objectweb.asm.commons
类 RemappingFieldAdapter

java.lang.Object
  继承者 org.objectweb.asm.commons.RemappingFieldAdapter
所有已实现的接口:
FieldVisitor

public class RemappingFieldAdapter
extends Object
implements FieldVisitor

A FieldVisitor adapter for type remapping.

作者:
Eugene Kuleshov

构造方法摘要
RemappingFieldAdapter(FieldVisitor fv, Remapper remapper)
           
 
方法摘要
 AnnotationVisitor visitAnnotation(String desc, boolean visible)
          Visits an annotation of the field.
 void visitAttribute(Attribute attr)
          Visits a non standard attribute of the field.
 void visitEnd()
          Visits the end of the field.
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

RemappingFieldAdapter

public RemappingFieldAdapter(FieldVisitor fv,
                             Remapper remapper)
方法详细信息

visitAnnotation

public AnnotationVisitor visitAnnotation(String desc,
                                         boolean visible)
从接口 FieldVisitor 复制的描述
Visits an annotation of the field.

指定者:
接口 FieldVisitor 中的 visitAnnotation
参数:
desc - the class descriptor of the annotation class.
visible - true if the annotation is visible at runtime.
返回:
a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.

visitAttribute

public void visitAttribute(Attribute attr)
从接口 FieldVisitor 复制的描述
Visits a non standard attribute of the field.

指定者:
接口 FieldVisitor 中的 visitAttribute
参数:
attr - an attribute.

visitEnd

public void visitEnd()
从接口 FieldVisitor 复制的描述
Visits the end of the field. This method, which is the last one to be called, is used to inform the visitor that all the annotations and attributes of the field have been visited.

指定者:
接口 FieldVisitor 中的 visitEnd


Copyright © 2013. All Rights Reserved.