FileDocCategorySizeDatePackage
Member.javaAPI DocAndroid 1.5 API2177Wed May 06 22:41:02 BST 2009com.android.dx.cf.iface

Member

public interface Member
Interface representing members of class files (that is, fields and methods).

Fields Summary
Constructors Summary
Methods Summary
public intgetAccessFlags()
Get the field access_flags.

return
the access flags

public AttributeListgetAttributes()
Get the field attributes (along with attributes_count).

return
non-null; the constant pool

public com.android.dx.rop.cst.CstTypegetDefiningClass()
Get the defining class.

return
non-null; the defining class

public com.android.dx.rop.cst.CstUtf8getDescriptor()
Get the field descriptor_index of the member. This is just a convenient shorthand for getNat().getDescriptor().

return
non-null; the descriptor

public com.android.dx.rop.cst.CstUtf8getName()
Get the field name_index of the member. This is just a convenient shorthand for getNat().getName().

return
non-null; the name

public com.android.dx.rop.cst.CstNatgetNat()
Get the name and type associated with this member. This is a combination of the fields name_index and descriptor_index in the original classfile, interpreted via the constant pool.

return
non-null; the name and type