|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| BeanContextList.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 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;
|
|
| 10 |
import javax.swing.ListModel;
|
|
| 11 |
|
|
| 12 |
/**
|
|
| 13 |
* Description of the Class
|
|
| 14 |
*
|
|
| 15 |
* @author Laurent Etiemble
|
|
| 16 |
* @version $Revision: 1.2 $
|
|
| 17 |
*/
|
|
| 18 |
public class BeanContextList extends JList |
|
| 19 |
{
|
|
| 20 |
/**
|
|
| 21 |
* Constructor for the BeanContextList object
|
|
| 22 |
*
|
|
| 23 |
* @param dataModel Description of the Parameter
|
|
| 24 |
*/
|
|
| 25 | 0 |
public BeanContextList(ListModel dataModel)
|
| 26 |
{
|
|
| 27 | 0 |
super(dataModel);
|
| 28 |
} |
|
| 29 |
} |
|
| 30 |
|
|
||||||||||