package com.xyz.fig; import java.awt.Graphics2D; /** * The Interface Drawable. */ public interface Drawable { /** * Draw. * * @param f * the f */ void draw(Graphics2D f); }