Facade Pattern

This commit is contained in:
kim
2021-01-17 00:28:49 +09:00
parent 28dfa7044c
commit 47a4544f6f
6 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package Facade.system;
class HelpSystem03 {
public HelpSystem03() {
System.out.println("Call Constructor : " + getClass().getName());
}
public void process() {
System.out.println("Call Process : " + getClass().getSimpleName());
}
}