Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model
In directory usw-pr-cvs1:/tmp/cvs-serv30470/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser/model
Added Files:
SearchTypeEditor.java
Log Message:
Initial Import
--- NEW FILE: SearchTypeEditor.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.jndibrowser.model;
// Other Imports
import com.dreambean.awt.editors.TagsEditor;
/**
* Description of the Class
*
* @author letiembl
* @created 2 janvier 2002
* @todo Javadoc to complete
*/
public class SearchTypeEditor extends TagsEditor
{
/** Constructor */
public SearchTypeEditor()
{
super(new String[]{"Shallow", "Deep"},
new Object[]{new Integer(Server.SHALLOW_SEARCH), new Integer(Server.DEEP_SEARCH)});
}
}
|