Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/form
In directory usw-pr-cvs1:/tmp/cvs-serv29554/main/net/sourceforge/ejtools/jmxbrowser/web/form
Added Files:
FilterForm.java
Log Message:
Initial Import
--- NEW FILE: FilterForm.java ---
package net.sourceforge.ejtools.jmxbrowser.web.form;
import javax.servlet.http.*;
import org.apache.struts.action.*;
/**
* Description of the Class
*
* @author letiembl
* @created 13 février 2002
*/
public final class FilterForm extends ActionForm
{
private String filter = "*:*";
/** Constructor for the ConnectForm object */
public FilterForm()
{
}
/**
* Setter for the factory attribute
*
* @param factory The new value for factory attribute
*/
public void setFilter(String filter)
{
this.filter= filter;
}
/**
* Getter for the factory attribute
*
* @return The value of factory attribute
*/
public String getFilter()
{
return filter;
}
/**
* Description of the Method
*
* @param mapping Description of Parameter
* @param request Description of Parameter
*/
public void reset(ActionMapping mapping, HttpServletRequest request)
{
this.filter = "*:*";
}
/**
* Description of the Method
*
* @param mapping Description of Parameter
* @param request Description of Parameter
* @return Description of the Returned Value
*/
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
{
return new ActionErrors();
}
}
|