Class SourceFileAttribute
- java.lang.Object
-
- org.apache.commons.compress.harmony.unpack200.bytecode.ClassFileEntry
-
- org.apache.commons.compress.harmony.unpack200.bytecode.Attribute
-
- org.apache.commons.compress.harmony.unpack200.bytecode.SourceFileAttribute
-
public class SourceFileAttribute extends Attribute
Source file class file attribute
-
-
Field Summary
-
Fields inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.ClassFileEntry
NONE
-
-
Constructor Summary
Constructors Constructor Description SourceFileAttribute(CPUTF8 name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
protected int
getLength()
protected ClassFileEntry[]
getNestedClassFileEntries()
int
hashCode()
boolean
isSourceFileAttribute()
Answer true if the receiver is a source file attribute (which gets special handling when the class is built); otherwise answer false.protected void
resolve(ClassConstantPool pool)
Allows the constant pool entries to resolve their nested entries.static void
setAttributeName(CPUTF8 cpUTF8Value)
java.lang.String
toString()
protected void
writeBody(java.io.DataOutputStream dos)
-
Methods inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.Attribute
doWrite, getAttributeName, getLengthIncludingHeader, hasBCIRenumbering
-
Methods inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.ClassFileEntry
objectHashCode, write
-
-
-
-
Constructor Detail
-
SourceFileAttribute
public SourceFileAttribute(CPUTF8 name)
-
-
Method Detail
-
setAttributeName
public static void setAttributeName(CPUTF8 cpUTF8Value)
-
isSourceFileAttribute
public boolean isSourceFileAttribute()
Description copied from class:Attribute
Answer true if the receiver is a source file attribute (which gets special handling when the class is built); otherwise answer false.- Overrides:
isSourceFileAttribute
in classAttribute
- Returns:
- boolean source file attribute
-
getNestedClassFileEntries
protected ClassFileEntry[] getNestedClassFileEntries()
- Overrides:
getNestedClassFileEntries
in classAttribute
-
resolve
protected void resolve(ClassConstantPool pool)
Description copied from class:ClassFileEntry
Allows the constant pool entries to resolve their nested entries.
-
toString
public java.lang.String toString()
- Specified by:
toString
in classClassFileEntry
-
-