org.objectweb.asm.commons
类 StaticInitMerger

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

public class StaticInitMerger
extends ClassAdapter

A ClassAdapter that merges clinit methods into a single one.

作者:
Eric Bruneton

字段摘要
 
从类 org.objectweb.asm.ClassAdapter 继承的字段
cv
 
构造方法摘要
StaticInitMerger(String prefix, ClassVisitor cv)
           
 
方法摘要
 void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
          Visits the header of the class.
 void visitEnd()
          Visits the end of the class.
 MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
          Visits a method of the class.
 
从类 org.objectweb.asm.ClassAdapter 继承的方法
visitAnnotation, visitAttribute, visitField, visitInnerClass, visitOuterClass, visitSource
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

StaticInitMerger

public StaticInitMerger(String prefix,
                        ClassVisitor cv)
方法详细信息

visit

public void visit(int version,
                  int access,
                  String name,
                  String signature,
                  String superName,
                  String[] interfaces)
从接口 ClassVisitor 复制的描述
Visits the header of the class.

指定者:
接口 ClassVisitor 中的 visit
覆盖:
ClassAdapter 中的 visit
参数:
version - the class version.
access - the class's access flags (see Opcodes). This parameter also indicates if the class is deprecated.
name - the internal name of the class (see getInternalName).
signature - the signature of this class. May be null if the class is not a generic one, and does not extend or implement generic classes or interfaces.
superName - the internal of name of the super class (see getInternalName). For interfaces, the super class is Object. May be null, but only for the Object class.
interfaces - the internal names of the class's interfaces (see getInternalName). May be null.

visitMethod

public MethodVisitor visitMethod(int access,
                                 String name,
                                 String desc,
                                 String signature,
                                 String[] exceptions)
从接口 ClassVisitor 复制的描述
Visits a method of the class. This method must return a new MethodVisitor instance (or null) each time it is called, i.e., it should not return a previously returned visitor.

指定者:
接口 ClassVisitor 中的 visitMethod
覆盖:
ClassAdapter 中的 visitMethod
参数:
access - the method's access flags (see Opcodes). This parameter also indicates if the method is synthetic and/or deprecated.
name - the method's name.
desc - the method's descriptor (see Type).
signature - the method's signature. May be null if the method parameters, return type and exceptions do not use generic types.
exceptions - the internal names of the method's exception classes (see getInternalName). May be null.
返回:
an object to visit the byte code of the method, or null if this class visitor is not interested in visiting the code of this method.

visitEnd

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

指定者:
接口 ClassVisitor 中的 visitEnd
覆盖:
ClassAdapter 中的 visitEnd


Copyright © 2013. All Rights Reserved.