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.jndi.browser.model;8 9 10 /**11 * Describe a simple JNDI entry.12 *13 * @author letiemble14 * @created 13 décembre 200115 * @version $Revision: 1.2 $16 * @javabean:class displayName="JNDI Entry"17 * shortDescription="JNDI Entry"18 * @javabean:icons color16="/toolbarButtonGraphics/general/File16.gif"19 * @javabean:property name="name"20 * class="java.lang.String"21 * displayName="Name"22 * shortDescription="Name of the entry"23 * @javabean:property name="className"24 * class="java.lang.String"25 * displayName="Class"26 * shortDescription="Class of the entry"27 */28 public class JNDIEntry extends JNDIContext29 {30 }31