9 lines
249 B
Java
9 lines
249 B
Java
|
//: polymorphism/shape/Square.java
|
||
|
package polymorphism.shape;
|
||
|
import static net.mindview.util.Print.*;
|
||
|
|
||
|
public class Square extends Shape {
|
||
|
public void draw() { print("Square.draw()"); }
|
||
|
public void erase() { print("Square.erase()"); }
|
||
|
} ///:~
|