package javadevjournal.design.creational.factory; /** * @author Kunwar */ public interface Shape { void drawShape(); }