14 lines
238 B
Java
14 lines
238 B
Java
|
|
package zutil;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* If an class implements this interface and runs it through
|
||
|
|
* MultiPrintStream.dump then all the values in the object
|
||
|
|
* will be written out.
|
||
|
|
*
|
||
|
|
* @author Ziver
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public interface Dumpable {
|
||
|
|
|
||
|
|
}
|