Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Circle implements Shape
  2. {
  3.     @Override
  4.     public void draw(){
  5.         System.out.println("Inside Circle::draw() method.");
  6.     }
  7. }