StdFieldListpublic final class StdFieldList extends com.android.dx.util.FixedSizeList implements FieldListStandard implementation of {@link FieldList}, which directly stores
an array of {@link Field} objects and can be made immutable. |
Constructors Summary |
---|
public StdFieldList(int size)Constructs an instance. All indices initially contain null .
super(size);
|
Methods Summary |
---|
public Field | get(int n){@inheritDoc}
return (Field) get0(n);
| public void | set(int n, Field field)Sets the field at the given index.
set0(n, field);
|
|