Package jodd.asm

Examples of jodd.asm.EmptyAnnotationVisitor


  }

  @Override
  public AnnotationVisitor visitArray(final String name) {
    final List<Object> array = new ArrayList<Object>();
    return new EmptyAnnotationVisitor() {

      @Override
      public void visit(String name, Object value) {
        array.add(value);
      }
View Full Code Here

TOP

Related Classes of jodd.asm.EmptyAnnotationVisitor

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.