morgand 2002/10/18 13:28:11
Modified: latka/src/java/org/apache/commons/latka/jelly/validators
CookieTag.java
Log:
added missing setter method
Revision Changes Path
1.7 +13 -4
jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/validators/CookieTag.java
Index: CookieTag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/validators/CookieTag.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- CookieTag.java 8 Oct 2002 20:27:01 -0000 1.6
+++ CookieTag.java 18 Oct 2002 20:28:11 -0000 1.7
@@ -113,5 +113,14 @@
public void setValue(String value) {
_value = value;
}
+
+ /**
+ * sets whether or not this cookie is expected
+ *
+ * @param cond true if the cookie is epected, false otherwise
+ */
+ public void setCond(boolean cond) {
+ _cond = cond;
+ }
}
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>