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

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

Introduction

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

Usage

From source file WebServiceAnnotationVisitor.java

public class WebServiceAnnotationVisitor implements AnnotationVisitor {
    private final List<WebServiceImplementation> wsImplementations;
    private final String className;
    private final Map<String, Object> attributes = new HashMap<String, Object>();

    public WebServiceAnnotationVisitor(List<WebServiceImplementation> wsImplementations, String className) {

From source file boilerplate.processor.adapters.util.AnnotationAdapter.java

/**
 * Default annotation visitor implementation.
 * 
 * @author McDowell
 */
public class AnnotationAdapter implements AnnotationVisitor {

From source file bytecode.AnnotationImporter.java

/**
 * Imports annotations into instances of <code>graph.Annotation</code>.
 */
public class AnnotationImporter implements AnnotationVisitor {
    /**
     * Annotation being populated.

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.AnnoCollector.java

public class AnnoCollector implements AnnotationVisitor {

    private AnnoInfo.Maker annoMaker;

    public AnnoCollector(AnnoInfo.Maker annoMaker) {
        this.annoMaker = annoMaker;

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

public class AnnoCollector implements AnnotationVisitor {

    private AnnoInfo.Maker annoMaker;

    public AnnoCollector(AnnoInfo.Maker annoMaker) {
        this.annoMaker = annoMaker;

From source file com.googlecode.ddom.weaver.asm.AbstractAnnotationVisitor.java

public abstract class AbstractAnnotationVisitor implements AnnotationVisitor {
    public void visit(String name, Object value) {
    }

    public AnnotationVisitor visitAnnotation(String name, String desc) {
        return null;

From source file com.googlecode.ddom.weaver.asm.AnnotationVisitorTee.java

public class AnnotationVisitorTee implements AnnotationVisitor {
    private final List<AnnotationVisitor> visitors = new ArrayList<AnnotationVisitor>();

    public AnnotationVisitorTee(AnnotationVisitor... visitors) {
        Collections.addAll(this.visitors, visitors);
    }

From source file com.masetta.spann.metadata.reader.asm3_2.VisitorAdapterImpl.java

public class VisitorAdapterImpl<T> implements ClassVisitor, MethodVisitor, FieldVisitor, AnnotationVisitor,
        SignatureVisitor, VisitorAdapter<T> {

    private final T delegate;

    /**

From source file com.pongasoft.kiwidoc.builder.bytecode.KiwidocAnnotationVisitor.java

/**
 * @author yan@pongasoft.com
 */
public class KiwidocAnnotationVisitor implements AnnotationVisitor {
    public static interface Setter {
        void setElements(Collection<AnnotationElement> elements);