2015-09-07 11:44:36 -06:00

9 lines
209 B
Java

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