Example usage for org.objectweb.asm ClassVisitor interface-usage

List of usage examples for org.objectweb.asm ClassVisitor interface-usage

Introduction

In this page you can find the example usage for org.objectweb.asm ClassVisitor interface-usage.

Usage

From source file WebServiceAnnotationExtractor.java

public class WebServiceAnnotationExtractor implements ClassVisitor {
    private final List<WebServiceImplementation> wsImplementations;
    private boolean isImplementation;
    private String className;

    public WebServiceAnnotationExtractor(List<WebServiceImplementation> wsImplementations) {

From source file bytecode.ClassImporter.java

/**
 * Imports Java class files using the ASM library. The depth of the import (i.e.
 * whether method implementations are considered, depends on the defined
 * configuration, but can be overidden by annotations on classes).
 */
public class ClassImporter implements ClassVisitor {

From source file com.android.tools.layoutlib.create.ClassHasNativeVisitor.java

/**
 * Indicates if a class contains any native methods.
 */
public class ClassHasNativeVisitor implements ClassVisitor {

    private boolean mHasNativeMethods = false;

From source file com.cognifide.slice.core.internal.module.AnnotationReader.java

/**
 * It is used by {@link ClassReader} to visit all annotations of a class. Names of read annotations are stored
 * internally so that one can verify if a class is annotated by a given annotation or not.
 * 
 */
public class AnnotationReader implements AnnotationVisitor, ClassVisitor {

From source file com.github.stokito.gag.instrument.collector.ClassCollector.java

public class ClassCollector implements ClassVisitor {

    private ClassInfo.Maker classMaker;

    @Override
    public void visit(int version, int access, String name, String sig, String superName, String[] interfaces) {

From source file com.google.gag.instrument.collector.ClassCollector.java

public class ClassCollector implements ClassVisitor {

    private ClassInfo.Maker classMaker;

    @Override
    public void visit(int version, int access, String name, String sig, String superName, String[] interfaces) {

From source file com.google.gwt.jvm.asm.DelegatingClassVisitor.java

/**
 * Default (delegating) implementation of ClassVisitor (hence noop)
 */
public class DelegatingClassVisitor implements ClassVisitor {

    protected final ClassVisitor delegate;

From source file com.google.gwt.jvm.asm.NoopClassVisitor.java

public class NoopClassVisitor implements ClassVisitor {

    public void visit(int version, int access, String name, String signature, String superName,
            String[] interfaces) {
    }

From source file com.google.singletondetector.visitors.NoopClassVisitor.java

/**
 * A simple class that implements ClassVisitor and does nothing for each method.
 * Can be extended by other classes to easily override one or two methods.
 * 
 * @author David Rubel
 */

From source file com.google.test.metric.asm.NoopClassVisitor.java

public class NoopClassVisitor implements ClassVisitor {

    public void visit(int version, int access, String name, String signature, String superName,
            String[] interfaces) {
    }