Home | History | Annotate | Download | only in io
      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 {
      9     @Nonnull OutputStream outputAt(int offset);
     10     @Nonnull InputStream readAt(int offset);
     11     void close() throws IOException;
     12 }
     13