org.jvnet.hk2.testing.junit.internal
Class ClassVisitorImpl

java.lang.Object
  extended by org.jvnet.hk2.testing.junit.internal.ClassVisitorImpl
All Implemented Interfaces:
org.objectweb.asm.ClassVisitor

public class ClassVisitorImpl
extends Object
implements org.objectweb.asm.ClassVisitor

Author:
jwells

Constructor Summary
ClassVisitorImpl(DynamicConfiguration config, boolean verbose)
          Creates this with the config to add to if this is a service
 
Method Summary
 void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
           
 org.objectweb.asm.AnnotationVisitor visitAnnotation(String desc, boolean visible)
           
 void visitAttribute(org.objectweb.asm.Attribute arg0)
           
 void visitEnd()
           
 org.objectweb.asm.FieldVisitor visitField(int arg0, String arg1, String arg2, String arg3, Object arg4)
           
 void visitInnerClass(String arg0, String arg1, String arg2, int arg3)
           
 org.objectweb.asm.MethodVisitor visitMethod(int arg0, String arg1, String arg2, String arg3, String[] arg4)
           
 void visitOuterClass(String arg0, String arg1, String arg2)
           
 void visitSource(String arg0, String arg1)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassVisitorImpl

public ClassVisitorImpl(DynamicConfiguration config,
                        boolean verbose)
Creates this with the config to add to if this is a service

Parameters:
config -
verbose - true if we should print out any service we are binding
Method Detail

visit

public void visit(int version,
                  int access,
                  String name,
                  String signature,
                  String superName,
                  String[] interfaces)
Specified by:
visit in interface org.objectweb.asm.ClassVisitor

visitAnnotation

public org.objectweb.asm.AnnotationVisitor visitAnnotation(String desc,
                                                           boolean visible)
Specified by:
visitAnnotation in interface org.objectweb.asm.ClassVisitor

visitAttribute

public void visitAttribute(org.objectweb.asm.Attribute arg0)
Specified by:
visitAttribute in interface org.objectweb.asm.ClassVisitor

visitEnd

public void visitEnd()
Specified by:
visitEnd in interface org.objectweb.asm.ClassVisitor

visitField

public org.objectweb.asm.FieldVisitor visitField(int arg0,
                                                 String arg1,
                                                 String arg2,
                                                 String arg3,
                                                 Object arg4)
Specified by:
visitField in interface org.objectweb.asm.ClassVisitor

visitInnerClass

public void visitInnerClass(String arg0,
                            String arg1,
                            String arg2,
                            int arg3)
Specified by:
visitInnerClass in interface org.objectweb.asm.ClassVisitor

visitMethod

public org.objectweb.asm.MethodVisitor visitMethod(int arg0,
                                                   String arg1,
                                                   String arg2,
                                                   String arg3,
                                                   String[] arg4)
Specified by:
visitMethod in interface org.objectweb.asm.ClassVisitor

visitOuterClass

public void visitOuterClass(String arg0,
                            String arg1,
                            String arg2)
Specified by:
visitOuterClass in interface org.objectweb.asm.ClassVisitor

visitSource

public void visitSource(String arg0,
                        String arg1)
Specified by:
visitSource in interface org.objectweb.asm.ClassVisitor


Copyright © 2013 Oracle Corporation. All Rights Reserved.