KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > Condition


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib;
11 import javax.servlet.jsp.JspTagException JavaDoc;
12
13 /**
14  * Interface for 'condition' tags. ConditionTags are things like
15  * 'listcondition' (and descendants like 'first' and 'last'), present,
16  * compare. These tags are similar, therefore all implement this ConditionTag interface.
17  *
18  * @author Michiel Meeuwissen
19  * @version $Id: Condition.java,v 1.4 2003/06/06 10:03:06 pierre Exp $
20  */

21
22 public interface Condition {
23
24     /**
25      * This attribute inverses the sense of the condition.
26      *
27      */

28     public void setInverse(String JavaDoc b) throws JspTagException JavaDoc;
29     // public void setInverse(Boolean b) throws JspTagException;
30
}
31
Popular Tags