FileDocCategorySizeDatePackage
MemberIdsSection.javaAPI DocAndroid 5.1 API1370Thu Mar 12 22:18:30 GMT 2015com.android.dexgen.dex.file

MemberIdsSection

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

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

param
name {@code null-ok;} the name of this instance, for annotation purposes
param
file {@code 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++;
        }