proguard.io.MultiDataEntryReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proguard-core Show documentation
Show all versions of proguard-core Show documentation
ProGuardCORE is a free library to read, analyze, modify, and write Java class files.
package proguard.io;
import java.io.IOException;
public class MultiDataEntryReader implements DataEntryReader {
private final DataEntryReader[] readers;
public MultiDataEntryReader(DataEntryReader... readers) {
this.readers = readers;
}
@Override
public void read(DataEntry dataEntry) throws IOException {
for (DataEntryReader reader : readers) {
reader.read(dataEntry);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy