• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.jf.dexlib2.writer.io;
2 
3 import javax.annotation.Nonnull;
4 import java.io.IOException;
5 import java.io.InputStream;
6 import java.io.OutputStream;
7 
8 public interface DexDataStore {
outputAt(int offset)9     @Nonnull OutputStream outputAt(int offset);
readAt(int offset)10     @Nonnull InputStream readAt(int offset);
close()11     void close() throws IOException;
12 }
13