package javadevjournal.design.structural.Composite; /** * @author Kunwar */ public interface Shape { public void drawShape(String fillColor); }