MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / sell

Method sell

contents/design-pattern/code/FactoryJava/FactoryTest.java:26–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected