[Ejtools-cvs] CVS: applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-22 17:39:05
|
Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms In directory usw-pr-cvs1:/tmp/cvs-serv29020/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model/jms Added Files: DeliveryModeEditor.java Log Message: Initial Import --- NEW FILE: DeliveryModeEditor.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.jndibrowser.model.jms; // Standard Imports import javax.jms.DeliveryMode; // Other Imports import com.dreambean.awt.editors.TagsEditor; /** * Description of the Class * * @author letiembl * @created 2 janvier 2002 * @todo Javadoc to complete */ public class DeliveryModeEditor extends TagsEditor { /** Constructor for the DimensionEditor object */ public DeliveryModeEditor() { super(new String[]{"Persistent", "Non Persistent"}, new Object[]{new Integer(DeliveryMode.PERSISTENT), new Integer(DeliveryMode.NON_PERSISTENT)}); } } |