Home
last modified time | relevance | path

Searched refs:annotationEntry (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DAnnotationElementValue.java29 private final AnnotationEntry annotationEntry; field in AnnotationElementValue
31 public AnnotationElementValue(final int type, final AnnotationEntry annotationEntry, in AnnotationElementValue() argument
39 this.annotationEntry = annotationEntry; in AnnotationElementValue()
46 annotationEntry.dump(dos); in dump()
52 return annotationEntry.toString(); in stringifyValue()
63 return annotationEntry; in getAnnotationEntry()
DAnnotationEntry.java54 …final AnnotationEntry annotationEntry = new AnnotationEntry(input.readUnsignedShort(), constant_po… in read() local
56 annotationEntry.element_value_pairs = new ArrayList<>(); in read()
58 annotationEntry.element_value_pairs.add( in read()
62 return annotationEntry; in read()
DDescendingVisitor.java128 public void visitAnnotationEntry(final AnnotationEntry annotationEntry) in visitAnnotationEntry() argument
130 stack.push(annotationEntry); in visitAnnotationEntry()
131 annotationEntry.accept(visitor); in visitAnnotationEntry()