FileDocCategorySizeDatePackage
AttSignature.javaAPI DocAndroid 1.5 API1633Wed May 06 22:41:02 BST 2009com.android.dx.cf.attrib

AttSignature

public final class AttSignature extends BaseAttribute
Attribute class for standards-track Signature attributes.

Fields Summary
public static final String
ATTRIBUTE_NAME
non-null; attribute name for attributes of this type
private final com.android.dx.rop.cst.CstUtf8
signature
non-null; the signature string
Constructors Summary
public AttSignature(com.android.dx.rop.cst.CstUtf8 signature)
Constructs an instance.

param
signature non-null; the signature string


                   
       
        super(ATTRIBUTE_NAME);

        if (signature == null) {
            throw new NullPointerException("signature == null");
        }

        this.signature = signature;
    
Methods Summary
public intbyteLength()
{@inheritDoc}

        return 8;
    
public com.android.dx.rop.cst.CstUtf8getSignature()
Gets the signature string.

return
non-null; the signature string

        return signature;