RawAttributepublic final class RawAttribute extends BaseAttribute Raw attribute, for holding onto attributes that are unrecognized. |
Fields Summary |
---|
private final com.android.dx.util.ByteArray | datanon-null; attribute data | private final com.android.dx.rop.cst.ConstantPool | poolnull-ok; constant pool to use for resolution of cpis in {@link
#data} |
Methods Summary |
---|
public int | byteLength(){@inheritDoc}
return data.size() + 6;
| public com.android.dx.util.ByteArray | getData()Get the raw data of the attribute.
return data;
| public com.android.dx.rop.cst.ConstantPool | getPool()Gets the constant pool to use for cpi resolution, if any. It
presumably came from the class file that this attribute came
from.
return pool;
|
|