1 /*2 * EJTools, the Enterprise Java Tools3 *4 * Distributable under LGPL license.5 * See terms of license at www.gnu.org.6 */7 package org.ejtools.graph;8 9 import javax.swing.JComponent ;10 11 /**12 * @author Laurent Etiemble13 * @version $Revision: 1.7 $14 * @todo Javadoc to complete15 */16 public interface LabelElement17 {18 /**19 * Gets the component attribute of the LabelElement object20 *21 * @return The component value22 */23 public JComponent getComponent();24 }25