All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.d2j.reader.BaseDexFileReader Maven / Gradle / Ivy

There is a newer version: 1.0.38
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy