vgritsenko 2002/10/02 21:41:01
Modified: src/java/org/apache/cocoon/matching CookieMatcher.java
HeaderMatcher.java ParameterMatcher.java
RequestAttributeMatcher.java
RequestParameterMatcher.java
SessionAttributeMatcher.java
Log:
javadoc tweaks
Revision Changes Path
1.4 +1 -1
xml-cocoon2/src/java/org/apache/cocoon/matching/CookieMatcher.java
Index: CookieMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/CookieMatcher.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- CookieMatcher.java 31 Jul 2002 13:13:29 -0000 1.3
+++ CookieMatcher.java 3 Oct 2002 04:41:01 -0000 1.4
@@ -62,7 +62,7 @@
import java.util.Map;
/**
- * Matches cookies agains given name. Returns name, value pairs for all cookies.
+ * Matches cookies agains given name. Returns value of the matched cookie.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Maciek Kaminski</a>
*/
1.3 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/matching/HeaderMatcher.java
Index: HeaderMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/HeaderMatcher.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HeaderMatcher.java 6 Jun 2002 14:28:14 -0000 1.2
+++ HeaderMatcher.java 3 Oct 2002 04:41:01 -0000 1.3
@@ -61,7 +61,7 @@
/**
* This class allows for matching based on a request header.
* If the specified request header parameter exists, its value is
- * retrieved for later xpath substitution.
+ * retrieved for later sitemap substitution.
*
* <p><b>Example:</b></p>
* <pre>
@@ -78,7 +78,7 @@
/**
* Match method to see if the request header exists. If it does
* have a value the header added to the array list for later
- * substitution with an xpath attribute.
+ * sitemap substitution.
*
* @param pattern name of request header to find
* @param objectModel environment passed through via cocoon
1.3 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/matching/ParameterMatcher.java
Index: ParameterMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/ParameterMatcher.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ParameterMatcher.java 6 Jun 2002 14:28:14 -0000 1.2
+++ ParameterMatcher.java 3 Oct 2002 04:41:01 -0000 1.3
@@ -61,7 +61,7 @@
/**
* This class allows for matching based on a parameter provided from the sitemap.
* If the specified sitemap parameter exists, its value is retrieved for later
- * xpath substitution.
+ * sitemap substitution.
*
* <p><b>Example:</b></p>
* <pre>
@@ -78,7 +78,7 @@
/**
* Match method to see if the sitemap parameter exists. If it does
* have a value the parameter added to the array list for later
- * substitution with an xpath attribute.
+ * sitemap substitution.
*
* @param pattern name of sitemap parameter to find
* @param objectModel environment passed through via cocoon
1.6 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/matching/RequestAttributeMatcher.java
Index: RequestAttributeMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/RequestAttributeMatcher.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- RequestAttributeMatcher.java 6 Jun 2002 14:28:14 -0000 1.5
+++ RequestAttributeMatcher.java 3 Oct 2002 04:41:01 -0000 1.6
@@ -60,7 +60,7 @@
/**
* This class allows for matching based on a request attribute.
* If the specified request attribute exists, its string representation
- * is retrieved for later xpath substitution.
+ * is retrieved for later sitemap substitution.
*
* <p><b>Example:</b></p>
* <pre>
@@ -77,7 +77,7 @@
/**
* Match method to see if the request attribute exists. If it does
* have a value the string represenation of attribute is added to
- * the array list for later substitution with a xpath attribute.
+ * the array list for later sitemap substitution.
*
* @param pattern name of request attribute to find
* @param objectModel environment passed through via cocoon
1.7 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/matching/RequestParameterMatcher.java
Index: RequestParameterMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/RequestParameterMatcher.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- RequestParameterMatcher.java 6 Jun 2002 14:28:14 -0000 1.6
+++ RequestParameterMatcher.java 3 Oct 2002 04:41:01 -0000 1.7
@@ -61,7 +61,7 @@
/**
* This class allows for matching based on a request parameter.
* If the specified request parameter exists, its value is retrieved for later
- * xpath substitution.
+ * sitemap substitution.
*
* <p><b>Example:</b></p>
* <pre>
@@ -79,7 +79,7 @@
/**
* Match method to see if the request parameter exists. If it does
* have a value the parameter is added to the array list for later
- * substitution with a xpath attribute.
+ * sitemap substitution.
*
* @param pattern name of request parameter to find
* @param objectModel environment passed through via cocoon
1.6 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/matching/SessionAttributeMatcher.java
Index: SessionAttributeMatcher.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/matching/SessionAttributeMatcher.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- SessionAttributeMatcher.java 6 Jun 2002 14:28:14 -0000 1.5
+++ SessionAttributeMatcher.java 3 Oct 2002 04:41:01 -0000 1.6
@@ -60,7 +60,7 @@
/**
* This class allows for matching based on a session attribute.
* If the specified session attribute exists, its string representation
- * is retrieved for later xpath substitution.
+ * is retrieved for later sitemap substitution.
*
* <p><b>Example:</b></p>
* <pre>
@@ -77,7 +77,7 @@
/**
* Match method to see if the request attribute exists. If it does
* have a value the string represenation of attribute is added to
- * the array list for later substitution with a xpath attribute.
+ * the array list for later sitemap substitution.
*
* @param pattern name of session attribute to find
* @param objectModel environment passed through via cocoon
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]