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