com.googlecode.d2j.reader.BaseDexFileReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.googlecode.d2j.reader;
import com.googlecode.d2j.visitors.DexFileVisitor;
import java.util.List;
public interface BaseDexFileReader {
int getDexVersion();
void accept(DexFileVisitor dv);
List getClassNames();
void accept(DexFileVisitor dv, int config);
void accept(DexFileVisitor dv, int classIdx, int config);
}