com.darwinsys.io.DumpSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.io;
import java.io.IOException;
/** The general contract of a class to get bytes.
* Used in Dumper and related classes.
*/
public interface DumpSource {
public int get() throws IOException;
}