Add creational patterns, Interpreter; remove scripts; update README
This commit is contained in:
7
01-creational/abstract-factory/GUIFactory.java
Normal file
7
01-creational/abstract-factory/GUIFactory.java
Normal file
@@ -0,0 +1,7 @@
|
||||
package abstractfactory;
|
||||
|
||||
/** Abstract Factory - creates families of related UI components */
|
||||
public interface GUIFactory {
|
||||
Button createButton();
|
||||
Checkbox createCheckbox();
|
||||
}
|
||||
Reference in New Issue
Block a user