summaryrefslogtreecommitdiff
path: root/platform/java/src/com/artifex/mupdf/fitz/SeekableOutputStream.java
blob: d22ba996e241951c3ac2d3ce5504850ffed9e581 (plain)
1
2
3
4
5
6
7
8
9
package com.artifex.mupdf.fitz;

import java.io.IOException;

public interface SeekableOutputStream extends SeekableStream
{
	/* Behaves like java.io.OutputStream.write */
	void write(byte[] b, int off, int len) throws IOException;
}