PatternFactory: Initial commit
This commit is contained in:
7
System Development/PatternFactory/src/Rectangle.java
Normal file
7
System Development/PatternFactory/src/Rectangle.java
Normal file
@@ -0,0 +1,7 @@
|
||||
public class Rectangle implements Shape {
|
||||
|
||||
@Override
|
||||
public void draw() {
|
||||
System.out.println("Inside Rectangle::draw() method.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user