2015-11-14 16:18:05 -08:00

9 lines
209 B
Java

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