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