You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oro-dev@jakarta.apache.org by df...@apache.org on 2003/06/03 19:20:39 UTC

cvs commit: jakarta-oro/src/java/tools oroToApache.java

dfs         2003/06/03 10:20:39

  Modified:    .        CHANGES
               src/java/examples MatcherDemoApplet.java addCommas.java
                        didNotMatch.java filter.java grep.java groups.java
                        jdfix.java matchResultExample.java
                        matchesContainsExample.java prefixExample.java
                        printPasswd.java semicolon.java splitExample.java
                        substituteExample.java
               src/java/examples/awk matchesContainsExample.java
                        prefixExample.java splitExample.java
                        streamInputExample.java strings.java
                        substituteExample.java
               src/java/org/apache/oro/io AwkFilenameFilter.java
                        GlobFilenameFilter.java Perl5FilenameFilter.java
                        RegexFilenameFilter.java
               src/java/org/apache/oro/text DefaultMatchAction.java
                        GenericPatternCache.java GlobCompiler.java
                        MalformedCachePatternException.java
                        MatchAction.java MatchActionInfo.java
                        MatchActionProcessor.java PatternCache.java
                        PatternCacheFIFO.java PatternCacheFIFO2.java
                        PatternCacheLRU.java PatternCacheRandom.java
               src/java/org/apache/oro/text/awk AwkCompiler.java
                        AwkMatchResult.java AwkMatcher.java AwkPattern.java
                        AwkStreamInput.java CatNode.java
                        CharacterClassNode.java EpsilonNode.java
                        LeafNode.java NegativeCharacterClassNode.java
                        OrNode.java PlusNode.java QuestionNode.java
                        StarNode.java SyntaxNode.java SyntaxTree.java
                        TokenNode.java
               src/java/org/apache/oro/text/perl
                        MalformedPerl5PatternException.java
                        ParsedSubstitutionEntry.java Perl5Util.java
               src/java/org/apache/oro/text/regex CharStringPointer.java
                        MalformedPatternException.java MatchResult.java
                        OpCode.java Pattern.java PatternCompiler.java
                        PatternMatcher.java PatternMatcherInput.java
                        Perl5Compiler.java Perl5Debug.java
                        Perl5MatchResult.java Perl5Matcher.java
                        Perl5Pattern.java Perl5Repetition.java
                        Perl5Substitution.java StringSubstitution.java
                        Substitution.java Util.java
               src/java/org/apache/oro/util Cache.java CacheFIFO.java
                        CacheFIFO2.java CacheLRU.java CacheRandom.java
                        GenericCache.java GenericCacheEntry.java
               src/java/tools oroToApache.java
  Log:
  Reformatted source headers using a variation of
  perl -e "@FOO=<>; \$FOO=join('',@FOO); \$FOO =~ s#(package.+?;)[^/]+/\*(.+?\*/)[^/]+/\*[^\\$]+\$Id.+?\*/#/*\\n * "'\$Id\$'"\\n *\\n *\$2\\n\\n\\n\$1\\n#s; print \$FOO;"
  Now the Id tag appears at the top along with the license and the initial
  package statement appears after the license.  Earlier versions of javadoc
  would interpret the preamble material as a pckage comment, but this
  hasn't been the case for a while so it was time to make the files a
  slight bit more readable.  Also took the opportunity to move the
  examples into an examples package and the migration tool into a tools
  package, matching their directory names under src/.
  
  Revision  Changes    Path
  1.36      +4 -1      jakarta-oro/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/CHANGES,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- CHANGES	15 May 2003 15:59:24 -0000	1.35
  +++ CHANGES	3 Jun 2003 17:20:31 -0000	1.36
  @@ -1,6 +1,9 @@
   $Id$
   
   Version 2.0.8-dev-1
  + o examples moved to an examples package and com.oroinc migration tool
  +   moved to tools package.
  +
    o Fixed bug whereby compiling an expression with
      Perl5Compiler.MULTILINE_MASK wasn't always having the proper effect
      with respect to the matching of $ even though
  
  
  
  1.3       +7 -4      jakarta-oro/src/java/examples/MatcherDemoApplet.java
  
  Index: MatcherDemoApplet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/MatcherDemoApplet.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MatcherDemoApplet.java	20 May 2001 23:55:15 -0000	1.2
  +++ MatcherDemoApplet.java	3 Jun 2003 17:20:32 -0000	1.3
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.applet.*;
   import java.awt.*;
   import java.io.*;
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/addCommas.java
  
  Index: addCommas.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/addCommas.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- addCommas.java	20 May 2001 23:55:15 -0000	1.4
  +++ addCommas.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.perl.*;
   
   /**
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/didNotMatch.java
  
  Index: didNotMatch.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/didNotMatch.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- didNotMatch.java	20 May 2001 23:55:15 -0000	1.4
  +++ didNotMatch.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.perl.*;
   
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/filter.java
  
  Index: filter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/filter.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- filter.java	26 Feb 2003 20:55:50 -0000	1.5
  +++ filter.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   import java.util.*;
   
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/grep.java
  
  Index: grep.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/grep.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- grep.java	20 May 2001 23:55:15 -0000	1.4
  +++ grep.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   import java.util.*;
   
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/groups.java
  
  Index: groups.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/groups.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- groups.java	13 Jun 2001 01:45:07 -0000	1.5
  +++ groups.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   import java.util.*;
   
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/jdfix.java
  
  Index: jdfix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/jdfix.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- jdfix.java	19 Feb 2002 04:54:29 -0000	1.5
  +++ jdfix.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   
   import org.apache.oro.text.perl.*;
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/matchResultExample.java
  
  Index: matchResultExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/matchResultExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- matchResultExample.java	20 May 2001 23:55:15 -0000	1.4
  +++ matchResultExample.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/matchesContainsExample.java
  
  Index: matchesContainsExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/matchesContainsExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- matchesContainsExample.java	20 May 2001 23:55:15 -0000	1.4
  +++ matchesContainsExample.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/prefixExample.java
  
  Index: prefixExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/prefixExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- prefixExample.java	20 May 2001 23:55:15 -0000	1.4
  +++ prefixExample.java	3 Jun 2003 17:20:32 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/printPasswd.java
  
  Index: printPasswd.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/printPasswd.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- printPasswd.java	20 May 2001 23:55:15 -0000	1.5
  +++ printPasswd.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   import java.util.*;
   
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/semicolon.java
  
  Index: semicolon.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/semicolon.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- semicolon.java	13 Jun 2001 01:45:08 -0000	1.5
  +++ semicolon.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.io.*;
   
   import org.apache.oro.text.*;
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/splitExample.java
  
  Index: splitExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/splitExample.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- splitExample.java	20 May 2001 23:55:15 -0000	1.5
  +++ splitExample.java	3 Jun 2003 17:20:32 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import java.util.*;
   import org.apache.oro.text.regex.*;
   
  
  
  
  1.7       +7 -4      jakarta-oro/src/java/examples/substituteExample.java
  
  Index: substituteExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/substituteExample.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- substituteExample.java	20 Nov 2002 21:31:02 -0000	1.6
  +++ substituteExample.java	3 Jun 2003 17:20:32 -0000	1.7
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/awk/matchesContainsExample.java
  
  Index: matchesContainsExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/matchesContainsExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- matchesContainsExample.java	20 May 2001 23:55:16 -0000	1.4
  +++ matchesContainsExample.java	3 Jun 2003 17:20:33 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
   
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/awk/prefixExample.java
  
  Index: prefixExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/prefixExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- prefixExample.java	20 May 2001 23:55:16 -0000	1.4
  +++ prefixExample.java	3 Jun 2003 17:20:33 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
   
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/awk/splitExample.java
  
  Index: splitExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/splitExample.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- splitExample.java	20 May 2001 23:55:16 -0000	1.5
  +++ splitExample.java	3 Jun 2003 17:20:33 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import java.util.*;
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/examples/awk/streamInputExample.java
  
  Index: streamInputExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/streamInputExample.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- streamInputExample.java	20 May 2001 23:55:16 -0000	1.4
  +++ streamInputExample.java	3 Jun 2003 17:20:33 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import java.io.*;
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
  
  
  
  1.2       +7 -4      jakarta-oro/src/java/examples/awk/strings.java
  
  Index: strings.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/strings.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- strings.java	25 Jan 2002 09:32:28 -0000	1.1
  +++ strings.java	3 Jun 2003 17:20:33 -0000	1.2
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2002 The Apache Software Foundation.  All rights
  @@ -52,9 +55,9 @@
    * <http://www.apache.org/>.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import java.io.*;
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
  
  
  
  1.6       +7 -4      jakarta-oro/src/java/examples/awk/substituteExample.java
  
  Index: substituteExample.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/examples/awk/substituteExample.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- substituteExample.java	20 Nov 2002 21:31:02 -0000	1.5
  +++ substituteExample.java	3 Jun 2003 17:20:33 -0000	1.6
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package examples.awk;
  +
   import org.apache.oro.text.regex.*;
   import org.apache.oro.text.awk.*;
   
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/io/AwkFilenameFilter.java
  
  Index: AwkFilenameFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/io/AwkFilenameFilter.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AwkFilenameFilter.java	20 May 2001 23:55:17 -0000	1.4
  +++ AwkFilenameFilter.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.io;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.io;
  +
   import java.io.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/io/GlobFilenameFilter.java
  
  Index: GlobFilenameFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/io/GlobFilenameFilter.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- GlobFilenameFilter.java	20 May 2001 23:55:17 -0000	1.4
  +++ GlobFilenameFilter.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.io;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.io;
  +
   import java.io.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/io/Perl5FilenameFilter.java
  
  Index: Perl5FilenameFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/io/Perl5FilenameFilter.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Perl5FilenameFilter.java	20 May 2001 23:55:17 -0000	1.4
  +++ Perl5FilenameFilter.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.io;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.io;
  +
   import java.io.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.7       +7 -6      jakarta-oro/src/java/org/apache/oro/io/RegexFilenameFilter.java
  
  Index: RegexFilenameFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/io/RegexFilenameFilter.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- RegexFilenameFilter.java	13 Jun 2001 02:09:26 -0000	1.6
  +++ RegexFilenameFilter.java	3 Jun 2003 17:20:35 -0000	1.7
  @@ -1,6 +1,7 @@
  -package org.apache.oro.io;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.io;
  +
   import java.io.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/DefaultMatchAction.java
  
  Index: DefaultMatchAction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/DefaultMatchAction.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DefaultMatchAction.java	20 May 2001 23:55:18 -0000	1.4
  +++ DefaultMatchAction.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
    
   /**
    * DefaultMatchAction is a support class for MatchActionProcessor,
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/GenericPatternCache.java
  
  Index: GenericPatternCache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/GenericPatternCache.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- GenericPatternCache.java	20 May 2001 23:55:18 -0000	1.4
  +++ GenericPatternCache.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import java.util.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/GlobCompiler.java
  
  Index: GlobCompiler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/GlobCompiler.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- GlobCompiler.java	18 Jun 2001 14:34:06 -0000	1.5
  +++ GlobCompiler.java	3 Jun 2003 17:20:35 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/MalformedCachePatternException.java
  
  Index: MalformedCachePatternException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/MalformedCachePatternException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MalformedCachePatternException.java	20 May 2001 23:55:18 -0000	1.4
  +++ MalformedCachePatternException.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   
   /**
    * An exception used to indicate errors in a regular expression fetched
  
  
  
  1.5       +8 -7      jakarta-oro/src/java/org/apache/oro/text/MatchAction.java
  
  Index: MatchAction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/MatchAction.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MatchAction.java	20 May 2001 23:55:18 -0000	1.4
  +++ MatchAction.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -56,10 +57,10 @@
    * Portions of this software are based upon software originally written 
    * by Daniel F. Savarese. We appreciate his contributions.
    */
  - 
  -/*
  - * $Id$
  - */
  +
  +
  +package org.apache.oro.text;
  +
   
   /**
    * The MatchAction interface provides the callback interface for actions
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/MatchActionInfo.java
  
  Index: MatchActionInfo.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/MatchActionInfo.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- MatchActionInfo.java	13 Jun 2001 01:45:09 -0000	1.5
  +++ MatchActionInfo.java	3 Jun 2003 17:20:35 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */ 
  +
  +package org.apache.oro.text;
  + 
   import java.util.*;
   import java.io.*;
   
  
  
  
  1.8       +7 -6      jakarta-oro/src/java/org/apache/oro/text/MatchActionProcessor.java
  
  Index: MatchActionProcessor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/MatchActionProcessor.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- MatchActionProcessor.java	27 Jun 2002 22:40:41 -0000	1.7
  +++ MatchActionProcessor.java	3 Jun 2003 17:20:35 -0000	1.8
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */ 
  +
  +package org.apache.oro.text;
  + 
   import java.io.*;
   import java.util.*;
   
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/PatternCache.java
  
  Index: PatternCache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/PatternCache.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCache.java	20 May 2001 23:55:18 -0000	1.4
  +++ PatternCache.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/PatternCacheFIFO.java
  
  Index: PatternCacheFIFO.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/PatternCacheFIFO.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCacheFIFO.java	20 May 2001 23:55:18 -0000	1.4
  +++ PatternCacheFIFO.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import java.util.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/PatternCacheFIFO2.java
  
  Index: PatternCacheFIFO2.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/PatternCacheFIFO2.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCacheFIFO2.java	20 May 2001 23:55:18 -0000	1.4
  +++ PatternCacheFIFO2.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import java.util.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/PatternCacheLRU.java
  
  Index: PatternCacheLRU.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/PatternCacheLRU.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCacheLRU.java	20 May 2001 23:55:18 -0000	1.4
  +++ PatternCacheLRU.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import java.util.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/PatternCacheRandom.java
  
  Index: PatternCacheRandom.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/PatternCacheRandom.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCacheRandom.java	20 May 2001 23:55:19 -0000	1.4
  +++ PatternCacheRandom.java	3 Jun 2003 17:20:35 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text;
  +
   import java.util.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.8       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/AwkCompiler.java
  
  Index: AwkCompiler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/AwkCompiler.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AwkCompiler.java	20 Nov 2002 22:51:29 -0000	1.7
  +++ AwkCompiler.java	3 Jun 2003 17:20:36 -0000	1.8
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/AwkMatchResult.java
  
  Index: AwkMatchResult.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/AwkMatchResult.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- AwkMatchResult.java	30 Oct 2002 17:49:10 -0000	1.5
  +++ AwkMatchResult.java	3 Jun 2003 17:20:36 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.9       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/AwkMatcher.java
  
  Index: AwkMatcher.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/AwkMatcher.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- AwkMatcher.java	20 Nov 2002 21:31:03 -0000	1.8
  +++ AwkMatcher.java	3 Jun 2003 17:20:36 -0000	1.9
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.io.*;
   
   import org.apache.oro.text.regex.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/AwkPattern.java
  
  Index: AwkPattern.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/AwkPattern.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AwkPattern.java	20 May 2001 23:55:21 -0000	1.4
  +++ AwkPattern.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.io.Serializable;
   import java.util.*;
   
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/AwkStreamInput.java
  
  Index: AwkStreamInput.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/AwkStreamInput.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AwkStreamInput.java	20 May 2001 23:55:21 -0000	1.4
  +++ AwkStreamInput.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.io.*;
   import org.apache.oro.text.regex.*;
   
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/CatNode.java
  
  Index: CatNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/CatNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CatNode.java	20 May 2001 23:55:21 -0000	1.4
  +++ CatNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/CharacterClassNode.java
  
  Index: CharacterClassNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/CharacterClassNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CharacterClassNode.java	20 May 2001 23:55:21 -0000	1.4
  +++ CharacterClassNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/EpsilonNode.java
  
  Index: EpsilonNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/EpsilonNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- EpsilonNode.java	20 May 2001 23:55:21 -0000	1.4
  +++ EpsilonNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/LeafNode.java
  
  Index: LeafNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/LeafNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- LeafNode.java	20 May 2001 23:55:21 -0000	1.4
  +++ LeafNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/NegativeCharacterClassNode.java
  
  Index: NegativeCharacterClassNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/NegativeCharacterClassNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NegativeCharacterClassNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ NegativeCharacterClassNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/OrNode.java
  
  Index: OrNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/OrNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- OrNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ OrNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/PlusNode.java
  
  Index: PlusNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/PlusNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PlusNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ PlusNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   
   /**
    * @author <a href="mailto:oro-dev@jakarta.apache.org">Daniel F. Savarese</a>
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/QuestionNode.java
  
  Index: QuestionNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/QuestionNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- QuestionNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ QuestionNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   
   /**
    * @author <a href="mailto:oro-dev@jakarta.apache.org">Daniel F. Savarese</a>
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/StarNode.java
  
  Index: StarNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/StarNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- StarNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ StarNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/SyntaxNode.java
  
  Index: SyntaxNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/SyntaxNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SyntaxNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ SyntaxNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   import java.util.*;
   
   /**
  
  
  
  1.6       +9 -6      jakarta-oro/src/java/org/apache/oro/text/awk/SyntaxTree.java
  
  Index: SyntaxTree.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/SyntaxTree.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SyntaxTree.java	20 Nov 2002 21:31:03 -0000	1.5
  +++ SyntaxTree.java	3 Jun 2003 17:20:36 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,15 +58,17 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  +
  +package org.apache.oro.text.awk;
  +
  +import java.util.*;
  +
   /*
  - * $Id$
  - *
    * IMPORTANT!!!!!!!!!!!!!
    * Don't forget to optimize this module.  The calculation of follow can
    * be accelerated by calculating first and last only once for each node and
    * saving instead of doing dynamic calculation every time.
    */
  -import java.util.*;
   
   /**
    * @author <a href="mailto:oro-dev@jakarta.apache.org">Daniel F. Savarese</a>
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/awk/TokenNode.java
  
  Index: TokenNode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/awk/TokenNode.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TokenNode.java	20 May 2001 23:55:22 -0000	1.4
  +++ TokenNode.java	3 Jun 2003 17:20:36 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.awk;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.awk;
  +
   
   /**
    * @author <a href="mailto:oro-dev@jakarta.apache.org">Daniel F. Savarese</a>
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/perl/MalformedPerl5PatternException.java
  
  Index: MalformedPerl5PatternException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/perl/MalformedPerl5PatternException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MalformedPerl5PatternException.java	17 May 2001 21:59:26 -0000	1.4
  +++ MalformedPerl5PatternException.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.perl;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.perl;
  +
   import org.apache.oro.text.MalformedCachePatternException;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/perl/ParsedSubstitutionEntry.java
  
  Index: ParsedSubstitutionEntry.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/perl/ParsedSubstitutionEntry.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ParsedSubstitutionEntry.java	17 May 2001 21:59:26 -0000	1.4
  +++ ParsedSubstitutionEntry.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.perl;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.perl;
  +
   import org.apache.oro.text.regex.*;
   
   /**
  
  
  
  1.17      +7 -6      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.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Perl5Util.java	15 Mar 2003 20:55:29 -0000	1.16
  +++ Perl5Util.java	3 Jun 2003 17:20:37 -0000	1.17
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.perl;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.perl;
  +
   import java.util.*;
   
   import org.apache.oro.text.*;
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/CharStringPointer.java
  
  Index: CharStringPointer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/CharStringPointer.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CharStringPointer.java	17 May 2001 21:59:29 -0000	1.4
  +++ CharStringPointer.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The CharStringPointer class is used to facilitate traversal of a char[]
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/MalformedPatternException.java
  
  Index: MalformedPatternException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/MalformedPatternException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- MalformedPatternException.java	20 Nov 2002 23:17:38 -0000	1.5
  +++ MalformedPatternException.java	3 Jun 2003 17:20:37 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * A class used to signify the occurrence of a syntax error in a
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/MatchResult.java
  
  Index: MatchResult.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/MatchResult.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MatchResult.java	17 May 2001 21:59:30 -0000	1.4
  +++ MatchResult.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The MatchResult interface allows PatternMatcher implementors to return
  
  
  
  1.9       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/OpCode.java
  
  Index: OpCode.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/OpCode.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- OpCode.java	17 May 2001 21:59:30 -0000	1.8
  +++ OpCode.java	3 Jun 2003 17:20:37 -0000	1.9
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The OpCode class should not be instantiated.  It is a holder of various
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Pattern.java
  
  Index: Pattern.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Pattern.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Pattern.java	17 May 2001 21:59:31 -0000	1.4
  +++ Pattern.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The Pattern interface allows multiple representations of a regular
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/PatternCompiler.java
  
  Index: PatternCompiler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/PatternCompiler.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternCompiler.java	17 May 2001 21:59:31 -0000	1.4
  +++ PatternCompiler.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The PatternCompiler interface defines the operations a regular
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/PatternMatcher.java
  
  Index: PatternMatcher.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/PatternMatcher.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternMatcher.java	17 May 2001 21:59:31 -0000	1.4
  +++ PatternMatcher.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The PatternMatcher interface defines the operations a regular
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/PatternMatcherInput.java
  
  Index: PatternMatcherInput.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/PatternMatcherInput.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PatternMatcherInput.java	17 May 2001 21:59:32 -0000	1.4
  +++ PatternMatcherInput.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The PatternMatcherInput class is used to preserve state across
  
  
  
  1.19      +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Compiler.java
  
  Index: Perl5Compiler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Compiler.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Perl5Compiler.java	3 Jan 2003 17:18:07 -0000	1.18
  +++ Perl5Compiler.java	3 Jun 2003 17:20:37 -0000	1.19
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   import java.util.*;
   
   /**
  
  
  
  1.9       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Debug.java
  
  Index: Perl5Debug.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Debug.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Perl5Debug.java	19 May 2001 08:25:36 -0000	1.8
  +++ Perl5Debug.java	3 Jun 2003 17:20:37 -0000	1.9
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The Perl5Debug class is not intended for general use and should not
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5MatchResult.java
  
  Index: Perl5MatchResult.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5MatchResult.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Perl5MatchResult.java	27 Jun 2002 22:38:20 -0000	1.5
  +++ Perl5MatchResult.java	3 Jun 2003 17:20:37 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * A class used to store and access the results of a Perl5Pattern match.
  
  
  
  1.25      +6 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Matcher.java
  
  Index: Perl5Matcher.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Matcher.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Perl5Matcher.java	15 May 2003 15:59:25 -0000	1.24
  +++ Perl5Matcher.java	3 Jun 2003 17:20:37 -0000	1.25
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -58,9 +59,8 @@
    */
   
   
  -/*
  - * $Id$
  - */
  +package org.apache.oro.text.regex;
  +
   import java.util.*;
   
   /**
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Pattern.java
  
  Index: Perl5Pattern.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Pattern.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Perl5Pattern.java	17 May 2001 21:59:34 -0000	1.5
  +++ Perl5Pattern.java	3 Jun 2003 17:20:37 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   import java.io.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Repetition.java
  
  Index: Perl5Repetition.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Repetition.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Perl5Repetition.java	17 May 2001 21:59:34 -0000	1.4
  +++ Perl5Repetition.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * Perl5Repetition is a support class for Perl5Matcher.  It was originally
  
  
  
  1.11      +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Substitution.java
  
  Index: Perl5Substitution.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Perl5Substitution.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- Perl5Substitution.java	20 Nov 2002 21:31:03 -0000	1.10
  +++ Perl5Substitution.java	3 Jun 2003 17:20:37 -0000	1.11
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   import java.util.*;
   
   /**
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/StringSubstitution.java
  
  Index: StringSubstitution.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/StringSubstitution.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- StringSubstitution.java	17 May 2001 21:59:34 -0000	1.5
  +++ StringSubstitution.java	3 Jun 2003 17:20:37 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * StringSubstitution implements a Substitution consisting of a simple
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Substitution.java
  
  Index: Substitution.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Substitution.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Substitution.java	17 May 2001 21:16:07 -0000	1.4
  +++ Substitution.java	3 Jun 2003 17:20:37 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   
   /**
    * The Substitution interface provides a means for you to control how
  
  
  
  1.13      +7 -6      jakarta-oro/src/java/org/apache/oro/text/regex/Util.java
  
  Index: Util.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/text/regex/Util.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Util.java	26 Feb 2003 16:59:57 -0000	1.12
  +++ Util.java	3 Jun 2003 17:20:37 -0000	1.13
  @@ -1,6 +1,7 @@
  -package org.apache.oro.text.regex;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.text.regex;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/util/Cache.java
  
  Index: Cache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/Cache.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Cache.java	20 May 2001 23:55:24 -0000	1.4
  +++ Cache.java	3 Jun 2003 17:20:38 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   
   /**
    * An interface defining the basic functions of a cache.
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/util/CacheFIFO.java
  
  Index: CacheFIFO.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/CacheFIFO.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CacheFIFO.java	20 May 2001 23:55:24 -0000	1.4
  +++ CacheFIFO.java	3 Jun 2003 17:20:38 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/util/CacheFIFO2.java
  
  Index: CacheFIFO2.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/CacheFIFO2.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CacheFIFO2.java	20 May 2001 23:55:24 -0000	1.4
  +++ CacheFIFO2.java	3 Jun 2003 17:20:38 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   import java.util.*;
   
   /**
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/util/CacheLRU.java
  
  Index: CacheLRU.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/CacheLRU.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CacheLRU.java	20 Nov 2002 21:31:03 -0000	1.5
  +++ CacheLRU.java	3 Jun 2003 17:20:38 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/util/CacheRandom.java
  
  Index: CacheRandom.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/CacheRandom.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CacheRandom.java	20 May 2001 23:55:25 -0000	1.4
  +++ CacheRandom.java	3 Jun 2003 17:20:38 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   import java.util.*;
   
   /**
  
  
  
  1.6       +7 -6      jakarta-oro/src/java/org/apache/oro/util/GenericCache.java
  
  Index: GenericCache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/GenericCache.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- GenericCache.java	20 May 2001 23:55:25 -0000	1.5
  +++ GenericCache.java	3 Jun 2003 17:20:38 -0000	1.6
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   import java.util.*;
   
   /**
  
  
  
  1.5       +7 -6      jakarta-oro/src/java/org/apache/oro/util/GenericCacheEntry.java
  
  Index: GenericCacheEntry.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/org/apache/oro/util/GenericCacheEntry.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- GenericCacheEntry.java	20 May 2001 23:55:25 -0000	1.4
  +++ GenericCacheEntry.java	3 Jun 2003 17:20:38 -0000	1.5
  @@ -1,6 +1,7 @@
  -package org.apache.oro.util;
  -
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -57,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package org.apache.oro.util;
  +
   
   /**
    * A structure used to store values in a GenericCache.  It
  
  
  
  1.5       +7 -4      jakarta-oro/src/java/tools/oroToApache.java
  
  Index: oroToApache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-oro/src/java/tools/oroToApache.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- oroToApache.java	20 May 2001 23:55:26 -0000	1.4
  +++ oroToApache.java	3 Jun 2003 17:20:39 -0000	1.5
  @@ -1,4 +1,7 @@
  -/* ====================================================================
  +/*
  + * $Id$
  + *
  + * ====================================================================
    * The Apache Software License, Version 1.1
    *
    * Copyright (c) 2000 The Apache Software Foundation.  All rights
  @@ -55,9 +58,9 @@
    * by Daniel F. Savarese. We appreciate his contributions.
    */
   
  -/*
  - * $Id$
  - */
  +
  +package tools;
  +
   import java.io.*;
   import org.apache.oro.text.regex.*;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: oro-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: oro-dev-help@jakarta.apache.org