org.objectweb.asm.xml
类 SAXFieldAdapter

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

public class SAXFieldAdapter
extends SAXAdapter
implements FieldVisitor

SAXFieldAdapter

作者:
Eugene Kuleshov

构造方法摘要
SAXFieldAdapter(ContentHandler h, Attributes att)
           
 
方法摘要
 AnnotationVisitor visitAnnotation(String desc, boolean visible)
          Visits an annotation of the field.
 void visitEnd()
          Visits the end of the field.
 
从类 org.objectweb.asm.xml.SAXAdapter 继承的方法
addDocumentEnd, addDocumentStart, addElement, addEnd, addStart, getContentHandler, visitAttribute
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
从接口 org.objectweb.asm.FieldVisitor 继承的方法
visitAttribute
 

构造方法详细信息

SAXFieldAdapter

public SAXFieldAdapter(ContentHandler h,
                       Attributes att)
方法详细信息

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.

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.