javassist.bytecode.annotation
Class AnnotationMemberValue

java.lang.Object
  extended by javassist.bytecode.annotation.MemberValue
      extended by javassist.bytecode.annotation.AnnotationMemberValue

public class AnnotationMemberValue
extends MemberValue

Nested annotation.

Author:
Bill Burke, Shigeru Chiba

Constructor Summary
AnnotationMemberValue(Annotation a, ConstPool cp)
          Constructs an annotation member.
AnnotationMemberValue(ConstPool cp)
          Constructs an annotation member.
 
Method Summary
 void accept(MemberValueVisitor visitor)
          Accepts a visitor.
 Annotation getValue()
          Obtains the value.
 void setValue(Annotation newValue)
          Sets the value of this member.
 java.lang.String toString()
          Obtains the string representation of this object.
 void write(AnnotationsWriter writer)
          Writes the value.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AnnotationMemberValue

public AnnotationMemberValue(ConstPool cp)
Constructs an annotation member. The initial value is not specified.


AnnotationMemberValue

public AnnotationMemberValue(Annotation a,
                             ConstPool cp)
Constructs an annotation member. The initial value is specified by the first parameter.

Method Detail

getValue

public Annotation getValue()
Obtains the value.


setValue

public void setValue(Annotation newValue)
Sets the value of this member.


toString

public java.lang.String toString()
Obtains the string representation of this object.

Overrides:
toString in class java.lang.Object

write

public void write(AnnotationsWriter writer)
           throws java.io.IOException
Writes the value.

Specified by:
write in class MemberValue
Throws:
java.io.IOException

accept

public void accept(MemberValueVisitor visitor)
Accepts a visitor.

Specified by:
accept in class MemberValue


Javassist, a Java-bytecode translator toolkit.
Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved.