13 lines
240 B
Java
13 lines
240 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 {
|
|
|
|
}
|