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.adwt;8 9 import javax.swing.JList ;10 import javax.swing.ListModel ;11 12 /**13 * Description of the Class14 *15 * @author Laurent Etiemble16 * @version $Revision: 1.2 $17 */18 public class BeanContextList extends JList 19 {20 /**21 * Constructor for the BeanContextList object22 *23 * @param dataModel Description of the Parameter24 */25 public BeanContextList(ListModel dataModel)26 {27 super(dataModel);28 }29 }30