74.5.7.1. Interface

interface Drawable {
        void draw(float x, float y);
        void erase();
        void move(float x, float y);
}
class Square implements Drawable {
}
class Circle implemets Drawable {
}