OSDN Git Service

Add new source files
[armadillo/armadillo1.git] / src / jp / sfjp / armadillo / compression / lzhuf / LzssEncoderWritable.java
1 package jp.sfjp.armadillo.compression.lzhuf;
2
3 import java.io.*;
4
5 public interface LzssEncoderWritable {
6
7     void write(int symbol) throws IOException;
8
9     void writeMatched(int offset, int length) throws IOException;
10
11     void flush() throws IOException;
12
13     void close() throws IOException;
14
15 }