Subversion Repositories general

Rev

Rev 961 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/**
 * Extends and based on Apache Struts source code.
 *
 * Copyleft Anatoli Klassen (anatoli@aksoft.net)
 */
package ak.strutsx.taglib;

import javax.servlet.jsp.JspException;

public class NotEmptyTag
        extends EmptyTag
{
    protected boolean condition()
        throws JspException
    {
        return condition(false);
    }
}