Class AnnotationsAttribute.ElementValue
- java.lang.Object
-
- org.apache.commons.compress.harmony.unpack200.bytecode.AnnotationsAttribute.ElementValue
-
- Enclosing class:
- AnnotationsAttribute
public static class AnnotationsAttribute.ElementValue extends java.lang.Object
Pairs a tag and value.
-
-
Constructor Summary
Constructors Constructor Description ElementValue(int tag, java.lang.Object value)Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Object>getClassFileEntries()Gets a list of class file entries.intgetLength()Gets the length.voidresolve(ClassConstantPool pool)Resolves this instance against a given pool.voidwriteBody(java.io.DataOutputStream dos)Writes this instance to the given output stream.
-
-
-
Constructor Detail
-
ElementValue
public ElementValue(int tag, java.lang.Object value)
Constructs a new instance.- Parameters:
tag- a tag.value- a value.
-
-
Method Detail
-
getClassFileEntries
public java.util.List<java.lang.Object> getClassFileEntries()
Gets a list of class file entries.- Returns:
- a list of class file entries.
-
getLength
public int getLength()
Gets the length.- Returns:
- the length.
-
resolve
public void resolve(ClassConstantPool pool)
Resolves this instance against a given pool.- Parameters:
pool- a class constant pool.
-
writeBody
public void writeBody(java.io.DataOutputStream dos) throws java.io.IOException
Writes this instance to the given output stream.- Parameters:
dos- the output stream.- Throws:
java.io.IOException- if an I/O error occurs.
-
-