MCPcopy Index your code
hub / github.com/Seogeurim/CS-study / Note

Class Note

contents/design-pattern/code/FactoryJava/FactoryTest.java:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24class Note implements Product {
25
26 @Override
27 public void sell() {
28 System.out.println("sell Note !!!");
29 }
30}
31
32class ProductFactory {
33 public static Product getProduct(String className) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected