/** * */ package visualizationElements; import java.awt.*; /** * Represents an graphical element to visualize algorithms and abstract data types * @author MSchaefer * */ public abstract class VisualizationElement { /** * Draws the visualization element. * @param g The Graphics object to draw the element to the DrawArea. */ public abstract void draw(Graphics g); }