MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / Applicator

Class Applicator

interfaces/interfaceprocessor/Applicator.java:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5package interfaces.interfaceprocessor;
6
7public class Applicator {
8 public static void apply(Processor p, Object s) {
9 System.out.println("Using Processor " + p.name());
10 System.out.println(p.process(s));
11 }
12}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected