Facade Pattern
This commit is contained in:
12
design-pattern/src/Facade/system/HelpSystem03.java
Normal file
12
design-pattern/src/Facade/system/HelpSystem03.java
Normal 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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user