Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Seogeurim/CS-study
/ sell
Method
sell
contents/design-pattern/code/FactoryJava/FactoryTest.java:18–21 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
16
class
Pencil implements Product {
17
18
@Override
19
public
void
sell() {
20
System.out.println(
"sell Pencil !!!"
);
21
}
22
}
23
24
class
Note implements Product {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected