Package org.springframework.asm.commons

Examples of org.springframework.asm.commons.EmptyVisitor


    // no-op
  }

  public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here


    // no-op
  }

  public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here

    return new EmptyVisitor();
  }

  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here

    // no-op
  }

  public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here

    // no-op
  }

  public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here

    return new EmptyVisitor();
  }

  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    // no-op
    return new EmptyVisitor();
  }
View Full Code Here

  private final Map<String, Map<String, Object>> attributeMap = new LinkedHashMap<String, Map<String, Object>>();


  public MethodMetadataReadingVisitor(String name, int access, ClassLoader classLoader) {
    super(new EmptyVisitor());
    this.name = name;
    this.access = access;
    this.classLoader = classLoader;
  }
View Full Code Here

    }
    this.localAttributes.put(name, valueToUse);
  }

  public AnnotationVisitor visitAnnotation(String name, String desc) {
    return new EmptyVisitor();
  }
View Full Code Here

        localAttributes.put(attrName, newValue);
      }
      public void visitEnum(String name, String desc, String value) {
      }
      public AnnotationVisitor visitAnnotation(String name, String desc) {
        return new EmptyVisitor();
      }
      public AnnotationVisitor visitArray(String name) {
        return new EmptyVisitor();
      }
      public void visitEnd() {
      }
    };
  }
View Full Code Here

  private final Map<String, Map<String, Object>> attributeMap = new LinkedHashMap<String, Map<String, Object>>(2);

  public MethodMetadataReadingVisitor(String name, int access, String declaringClassName, ClassLoader classLoader,
      MultiValueMap<String, MethodMetadata> methodMetadataMap) {
    super(new EmptyVisitor());
    this.name = name;
    this.access = access;
    this.declaringClassName = declaringClassName;
    this.classLoader = classLoader;
    this.methodMetadataMap = methodMetadataMap;
View Full Code Here

TOP

Related Classes of org.springframework.asm.commons.EmptyVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.