PatternFactory: Initial commit

This commit is contained in:
2022-05-07 23:54:25 +02:00
parent df8e71ad1b
commit 0fe0a70258
8 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
public class Rectangle implements Shape {
@Override
public void draw() {
System.out.println("Inside Rectangle::draw() method.");
}
}