FileDocCategorySizeDatePackage
AttSignature.javaAPI DocAndroid 5.1 API1666Thu Mar 12 22:18:30 GMT 2015com.android.dx.cf.attrib

AttSignature

public final class AttSignature extends BaseAttribute
Attribute class for standards-track {@code Signature} attributes.

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

param
signature {@code 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.CstStringgetSignature()
Gets the signature string.

return
{@code non-null;} the signature string

        return signature;