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

AttSourceFile

public final class AttSourceFile extends BaseAttribute
Attribute class for standard SourceFile 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
sourceFile
non-null; name of the source file
Constructors Summary
public AttSourceFile(com.android.dx.rop.cst.CstUtf8 sourceFile)
Constructs an instance.

param
sourceFile non-null; the name of the source file


                      
       
        super(ATTRIBUTE_NAME);

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

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

        return 8;
    
public com.android.dx.rop.cst.CstUtf8getSourceFile()
Gets the source file name of this instance.

return
non-null; the source file

        return sourceFile;