FileDocCategorySizeDatePackage
FieldRef.javaAPI DocAndroid 5.1 API1369Thu Mar 12 22:18:30 GMT 2015com.android.dexdeps

FieldRef

public class FieldRef extends Object

Fields Summary
private String
mDeclClass
private String
mFieldType
private String
mFieldName
Constructors Summary
public FieldRef(String declClass, String fieldType, String fieldName)
Initializes a new field reference.

        mDeclClass = declClass;
        mFieldType = fieldType;
        mFieldName = fieldName;
    
Methods Summary
public java.lang.StringgetDeclClassName()
Gets the name of the field's declaring class.

        return mDeclClass;
    
public java.lang.StringgetName()
Gets the field name.

        return mFieldName;
    
public java.lang.StringgetTypeName()
Gets the type name. Examples: "Ljava/lang/String;", "[I".

        return mFieldType;