1 21 22 package org.netbeans.modules.classfile; 23 24 31 public final class NestedElementValue extends ElementValue { 32 Annotation value; 33 34 NestedElementValue(ConstantPool pool, Annotation value) { 35 this.value = value; 36 } 37 38 41 public final Annotation getNestedValue() { 42 return value; 43 } 44 45 public String toString() { 46 return "nested value=" + value; 47 } 48 } 49 | Popular Tags |