KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > graph > LabelElement


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
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 JavaDoc;
10
11 /**
12  * @author Laurent Etiemble
13  * @version $Revision: 1.7 $
14  * @todo Javadoc to complete
15  */

16 public interface LabelElement
17 {
18    /**
19     * Gets the component attribute of the LabelElement object
20     *
21     * @return The component value
22     */

23    public JComponent JavaDoc getComponent();
24 }
25
Popular Tags