Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

9 lines
216 B
Java

//: interfaces/interfaceprocessor/Processor.java
// ©2015 MindView LLC: see Copyright.txt
package interfaces.interfaceprocessor;
public interface Processor {
String name();
Object process(Object input);
} ///:~