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

12 lines
317 B
Java

// interfaces/interfaceprocessor/Apply.java
// ©2015 MindView LLC: see Copyright.txt
package interfaces.interfaceprocessor;
import static com.mindviewinc.util.Print.*;
public class Apply {
public static void process(Processor p, Object s) {
print("Using Processor " + p.name());
print(p.process(s));
}
}