Package com.android.dexdeps
Class ClassRef
- java.lang.Object
-
- com.android.dexdeps.ClassRef
-
public class ClassRef extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ClassRef(java.lang.String className)Initializes a new class reference.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddField(FieldRef fref)Adds the field to the field list.voidaddMethod(MethodRef mref)Adds the method to the method list.FieldRef[]getFieldArray()Returns the field list as an array.MethodRef[]getMethodArray()Returns the method list as an array.java.lang.StringgetName()Gets the class name.
-
-
-
Constructor Detail
-
ClassRef
public ClassRef(java.lang.String className)
Initializes a new class reference.
-
-
Method Detail
-
getFieldArray
public FieldRef[] getFieldArray()
Returns the field list as an array.
-
getMethodArray
public MethodRef[] getMethodArray()
Returns the method list as an array.
-
getName
public java.lang.String getName()
Gets the class name.
-
-