import java.awt.*;
import java.applet.*;

/**  class Diagram
 *   The class Diagram is the base class for all diagrams.
 *   It contains only the location for the connector
 *   It also specifies the size of a terminal diagram
 *   the size of the connector, the vertical spacing between
 *   diagrams in decision and loop structures and the font
 *   size
 */

public abstract class Diagram extends Panel{

	protected int connectorLocation;
	protected final static int fontSize = 12;
	protected final static int terminalSize = 20;
	protected final static int connectorSize = 16;
	protected final static int verticalSpacing = 10;

}
