// $Header: /home/apel/cvs/fstcomp/examples/Java/Graph/Color/Graph/Edge.java,v 1.1 2010-03-29 20:44:20 apel Exp $ /** * Please complete these missing tags * @author * @rref * @copyright * @concurrency * @see */ package Graph; class Edge { Color color = new Color( 4711 ); /** * Please complete the missing tags for print * @param * @return * @throws * @pre * @post */ void print() { Color.setDisplayColor( color ); original(); } }