/* * @topic T02368 11/29/2012 Polymorphism * @brief interface Shape */ package interfacedemo; public interface Shape { public double getArea(); public void draw(); }//interface Shape