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