1 15 16 package javassist.bytecode.annotation; 17 18 import javassist.bytecode.ConstPool; 19 import java.io.IOException ; 20 21 27 public abstract class MemberValue { 28 ConstPool cp; 29 char tag; 30 31 MemberValue(char tag, ConstPool cp) { 32 this.cp = cp; 33 this.tag = tag; 34 } 35 36 39 public abstract void accept(MemberValueVisitor visitor); 40 41 abstract void write(AnnotationsWriter w) throws IOException ; 42 } 43 44 45 | Popular Tags |