Hi, Here are some minor documentation changes. This is a patch to Perl5Util version 1.10.
Files also available from http://coderage.org/oro/ -- Michael --- Perl5Util.java.1.10 Sat Dec 8 03:15:25 2001 +++ Perl5Util.java.doc.patch Wed Feb 6 00:01:55 2002 @@ -3,7 +3,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2000 The Apache Software Foundation. All rights + * Copyright (c) 2000, 2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -58,7 +58,7 @@ */ /* - * $Id: Perl5Util.java,v 1.10 2001/12/08 03:15:25 dfs Exp $ + * $Id: Perl5Util.java,v 1.10+MD 2002/02/06 00:01:55 michaed Exp $ */ import java.util.*; import org.apache.oro.text.regex.*; @@ -77,7 +77,7 @@ * the slashes. * <p> * The objective of the class is to minimize the amount of code a Java - * programmer using OROMatcher<font size="-2"><sup>TM</sup></font> + * programmer using Jakarta-ORO * has to write to achieve the same results as Perl by * transparently handling regular expression compilation, caching, and * matching. A second objective is to use the same Perl pattern matching @@ -86,7 +86,7 @@ * All the state affecting methods are synchronized to avoid * the maintenance of explicit locks in multithreaded programs. This * philosophy differs from the - * OROMatcher<font size="-2"><sup>TM</sup></font> package, where + * <i>org.apache.oro.text.regex</i> package, where * you are expected to either maintain explicit locks, or more preferably * create separate compiler and matcher instances for each thread. * <p> @@ -123,10 +123,10 @@ * <p> * A couple of things to remember when using this class are that the * {@link #match match()} methods have the same meaning as - * contains() in OROMatcher<font size="-2"><sup>TM</sup></font> + * contains() in <i>org.apache.oro.text.regex</i> * and <code>=~ m/pattern/</code> in Perl. The methods are named match * to more closely associate them with Perl and to differentiate them - * from matches() in OROMatcher<font size="-2"><sup>TM</sup></font>. + * from matches() in <i>org.apache.oro.text.regex</i>. * A further thing to keep in mind is that the * {@link MalformedPerl5PatternException} class is derived from * RuntimeException which means you DON'T have to catch it. The reasoning @@ -144,7 +144,7 @@ * <p> * Finally, as a convenience Perl5Util implements * the org.apache.oro.text.regex.MatchResult interface found in the - * OROMatcher<font size="-2"><sup>TM</sup></font> package. The methods + * <i>org.apache.oro.text.regex</i> package. The methods * are merely wrappers which call the corresponding method of the last * MatchResult found (which can be accessed with * {@link #getMatch()} by a match or substitution -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
