KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > BeanContextList


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.adwt;
8
9 import javax.swing.JList JavaDoc;
10 import javax.swing.ListModel JavaDoc;
11
12 /**
13  * Description of the Class
14  *
15  * @author Laurent Etiemble
16  * @version $Revision: 1.2 $
17  */

18 public class BeanContextList extends JList JavaDoc
19 {
20    /**
21     * Constructor for the BeanContextList object
22     *
23     * @param dataModel Description of the Parameter
24     */

25    public BeanContextList(ListModel JavaDoc dataModel)
26    {
27       super(dataModel);
28    }
29 }
30
Popular Tags