dfs 2004/02/17 19:14:59
Modified: src/java/org/apache/oro/text/perl Perl5Util.java
Log:
Addressed the rest of issue report 26892
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26892
>Also:
>http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/Perl5Compiler.html
>refers to a parameter as "pattern - A Perl5 regular expression to compile". It
>would be useful to compare this with the pattern parameter used by
>Perl5Util.match...
Revision Changes Path
1.22 +4 -4 jakarta-oro/src/java/org/apache/oro/text/perl/Perl5Util.java
Index: Perl5Util.java
===================================================================
RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/perl/Perl5Util.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- Perl5Util.java 18 Feb 2004 03:11:34 -0000 1.21
+++ Perl5Util.java 18 Feb 2004 03:14:59 -0000 1.22
@@ -317,7 +317,7 @@
* around the last MatchResult found, so you can call its methods to
* access match information.
* <p>
- * @param pattern The pattern to search for.
+ * @param pattern A Perl5 regular expression to compile and search for.
* @param input The char[] input to search.
* @return True if the input contains the pattern, false otherwise.
* @exception MalformedPerl5PatternException If there is an error in
@@ -368,7 +368,7 @@
* around the last MatchResult found, so you can call its methods to
* access match information.
* <p>
- * @param pattern The pattern to search for.
+ * @param pattern A Perl5 regular expression to compile and search for.
* @param input The String input to search.
* @return True if the input contains the pattern, false otherwise.
* @exception MalformedPerl5PatternException If there is an error in
@@ -413,7 +413,7 @@
* explained in the [EMAIL PROTECTED]
org.apache.oro.text.regex.PatternMatcherInput
* PatternMatcherInput} documentation.
* <p>
- * @param pattern The pattern to search for.
+ * @param pattern A Perl5 regular expression to compile and search for.
* @param input The PatternMatcherInput to search.
* @return True if the input contains the pattern, false otherwise.
* @exception MalformedPerl5PatternException If there is an error in
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]