Methods Summary |
---|
public void | addField(FieldRef fref)Adds the field to the field list.
mFieldRefs.add(fref);
|
public void | addMethod(MethodRef mref)Adds the method to the method list.
mMethodRefs.add(mref);
|
public FieldRef[] | getFieldArray()Returns the field list as an array.
return mFieldRefs.toArray(new FieldRef[mFieldRefs.size()]);
|
public MethodRef[] | getMethodArray()Returns the method list as an array.
return mMethodRefs.toArray(new MethodRef[mMethodRefs.size()]);
|
public java.lang.String | getName()Gets the class name.
return mClassName;
|