FileDocCategorySizeDatePackage
MemberIdsSection.javaAPI DocAndroid 1.5 API1356Wed May 06 22:41:02 BST 2009com.android.dx.dex.file

MemberIdsSection

public abstract class MemberIdsSection extends UniformItemSection
Member (field or method) refs list section of a .dex file.

Fields Summary
Constructors Summary
public MemberIdsSection(String name, DexFile file)
Constructs an instance. The file offset is initially unknown.

param
name null-ok; the name of this instance, for annotation purposes
param
file non-null; file that this instance is part of

        super(name, file, 4);
    
Methods Summary
protected voidorderItems()
{@inheritDoc}

        int idx = 0;

        for (Object i : items()) {
            ((MemberIdItem) i).setIndex(idx);
            idx++;
        }