mrglavas    2004/10/04 15:07:42

  Modified:    java/src/org/apache/xerces/impl/xpath/regex
                        ParserForXMLSchema.java REUtil.java
                        ParseException.java RegexParser.java
                        RangeToken.java Match.java BMPattern.java
                        Token.java RegularExpression.java Op.java
               java/src/org/apache/xerces/impl/validation EntityState.java
                        ValidationManager.java ValidationState.java
               java/src/org/apache/xerces/impl/io ASCIIReader.java
                        MalformedByteSequenceException.java UCSReader.java
                        UTF8Reader.java
               java/src/org/apache/xerces/impl/xpath XPathException.java
                        XPath.java
               java/src/org/apache/xerces/impl/msg XMLMessageFormatter.java
  Log:
  Marking several classes as internal with the @xerces.internal tag.
  
  Revision  Changes    Path
  1.7       +4 -2      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParserForXMLSchema.java
  
  Index: ParserForXMLSchema.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParserForXMLSchema.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ParserForXMLSchema.java   24 Feb 2004 22:59:13 -0000      1.6
  +++ ParserForXMLSchema.java   4 Oct 2004 22:07:40 -0000       1.7
  @@ -20,7 +20,9 @@
   import java.util.Locale;
   
   /**
  - * A regular expression parser for the XML Shema.
  + * A regular expression parser for the XML Schema.
  + * 
  + * @xerces.internal
    *
    * @author TAMURA Kent <[EMAIL PROTECTED]>
    * @version $Id$
  
  
  
  1.9       +3 -2      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/REUtil.java
  
  Index: REUtil.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/REUtil.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- REUtil.java       24 Feb 2004 22:59:13 -0000      1.8
  +++ REUtil.java       4 Oct 2004 22:07:40 -0000       1.9
  @@ -19,9 +19,10 @@
   import java.text.CharacterIterator;
   
   /**
  + * @xerces.internal
  + * 
    * @version $Id$
    */
  -
   public final class REUtil {
       private REUtil() {
       }
  
  
  
  1.6       +2 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParseException.java
  
  Index: ParseException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParseException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ParseException.java       15 Aug 2004 21:22:15 -0000      1.5
  +++ ParseException.java       4 Oct 2004 22:07:40 -0000       1.6
  @@ -17,6 +17,7 @@
   package org.apache.xerces.impl.xpath.regex;
   
   /**
  + * @xerces.internal
    *
    * @author TAMURA Kent <[EMAIL PROTECTED]>
    * @version $Id$
  
  
  
  1.10      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RegexParser.java
  
  Index: RegexParser.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RegexParser.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- RegexParser.java  24 Feb 2004 22:59:13 -0000      1.9
  +++ RegexParser.java  4 Oct 2004 22:07:40 -0000       1.10
  @@ -23,6 +23,8 @@
   
   /**
    * A Regular Expression Parser.
  + * 
  + * @xerces.internal
    *
    * @version $Id$
    */
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RangeToken.java
  
  Index: RangeToken.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RangeToken.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RangeToken.java   24 Feb 2004 22:59:13 -0000      1.5
  +++ RangeToken.java   4 Oct 2004 22:07:40 -0000       1.6
  @@ -18,6 +18,8 @@
   
   /**
    * This class represents a character class such as [a-z] or a period.
  + * 
  + * @xerces.internal
    *
    * @version $Id$
    */
  
  
  
  1.6       +3 -2      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Match.java
  
  Index: Match.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Match.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Match.java        24 Feb 2004 22:59:13 -0000      1.5
  +++ Match.java        4 Oct 2004 22:07:40 -0000       1.6
  @@ -19,8 +19,9 @@
   import java.text.CharacterIterator;
   
   /**
  - * 
    * An instance of this class has ranges captured in matching.
  + * 
  + * @xerces.internal
    *
    * @see RegularExpression#matches(char[], int, int, Match)
    * @see RegularExpression#matches(char[], Match)
  
  
  
  1.5       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/BMPattern.java
  
  Index: BMPattern.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/BMPattern.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BMPattern.java    24 Feb 2004 22:59:13 -0000      1.4
  +++ BMPattern.java    4 Oct 2004 22:07:40 -0000       1.5
  @@ -20,6 +20,8 @@
   
   /**
    * Boyer-Moore searcher.
  + * 
  + * @xerces.internal
    *
    * @version $Id$
    */
  
  
  
  1.9       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Token.java
  
  Index: Token.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Token.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Token.java        24 Feb 2004 22:59:13 -0000      1.8
  +++ Token.java        4 Oct 2004 22:07:40 -0000       1.9
  @@ -21,6 +21,8 @@
   
   /**
    * This class represents a node in parse tree.
  + * 
  + * @xerces.internal
    *
    * @version $Id$
    */
  
  
  
  1.9       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RegularExpression.java
  
  Index: RegularExpression.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/RegularExpression.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- RegularExpression.java    24 Feb 2004 22:59:13 -0000      1.8
  +++ RegularExpression.java    4 Oct 2004 22:07:40 -0000       1.9
  @@ -474,6 +474,8 @@
    * </ul>
    *
    * <hr width="50%">
  + * 
  + * @xerces.internal
    *
    * @author TAMURA Kent &lt;[EMAIL PROTECTED]&gt;
    * @version $Id$
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Op.java
  
  Index: Op.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/Op.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Op.java   24 Feb 2004 22:59:13 -0000      1.4
  +++ Op.java   4 Oct 2004 22:07:40 -0000       1.5
  @@ -19,6 +19,8 @@
   import java.util.Vector;
   
   /**
  + * @xerces.internal
  + * 
    * @version $Id$
    */
   class Op {
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/validation/EntityState.java
  
  Index: EntityState.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/validation/EntityState.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EntityState.java  24 Feb 2004 22:59:15 -0000      1.5
  +++ EntityState.java  4 Oct 2004 22:07:41 -0000       1.6
  @@ -22,6 +22,8 @@
    * by components that store information about entity declarations, as well as by
    * entity validator that will need to validate attributes of type entity.
    * 
  + * @xerces.internal
  + * 
    * @author Elena Litani, IBM
    * @version $Id$
    */
  
  
  
  1.10      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/validation/ValidationManager.java
  
  Index: ValidationManager.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/validation/ValidationManager.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ValidationManager.java    24 Feb 2004 22:59:15 -0000      1.9
  +++ ValidationManager.java    4 Oct 2004 22:07:41 -0000       1.10
  @@ -25,6 +25,8 @@
    * other validators present in the pipeline, but should understand
    * that there are others and that some coordination is required.
    * 
  + * @xerces.internal
  + * 
    * @author Elena Litani, IBM
    * @version $Id$
    */
  
  
  
  1.15      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/validation/ValidationState.java
  
  Index: ValidationState.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/validation/ValidationState.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ValidationState.java      24 Feb 2004 22:59:15 -0000      1.14
  +++ ValidationState.java      4 Oct 2004 22:07:41 -0000       1.15
  @@ -26,6 +26,8 @@
   /**
    * Implementation of ValidationContext inteface. Used to establish an
    * environment for simple type validation.
  + * 
  + * @xerces.internal
    *
    * @author Elena Litani, IBM
    * @version $Id$
  
  
  
  1.8       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/io/ASCIIReader.java
  
  Index: ASCIIReader.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/io/ASCIIReader.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ASCIIReader.java  4 Mar 2004 19:27:13 -0000       1.7
  +++ ASCIIReader.java  4 Oct 2004 22:07:41 -0000       1.8
  @@ -26,6 +26,8 @@
   /**
    * A simple ASCII byte reader. This is an optimized reader for reading
    * byte streams that only contain 7-bit ASCII characters.
  + * 
  + * @xerces.internal
    *
    * @author Andy Clark, IBM
    *
  
  
  
  1.4       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/io/MalformedByteSequenceException.java
  
  Index: MalformedByteSequenceException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/io/MalformedByteSequenceException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MalformedByteSequenceException.java       15 Aug 2004 21:22:16 -0000      1.3
  +++ MalformedByteSequenceException.java       4 Oct 2004 22:07:41 -0000       1.4
  @@ -24,6 +24,8 @@
    * <p>Signals that a malformed byte sequence was detected
    * by a <code>java.io.Reader</code> that decodes bytes 
    * of a given encoding into characters.</p>
  + * 
  + * @xerces.internal
    *
    * @author Michael Glavassevich, IBM
    *
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/io/UCSReader.java
  
  Index: UCSReader.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/io/UCSReader.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- UCSReader.java    24 Feb 2004 22:59:15 -0000      1.4
  +++ UCSReader.java    4 Oct 2004 22:07:41 -0000       1.5
  @@ -23,6 +23,8 @@
   /** 
    * Reader for UCS-2 and UCS-4 encodings.
    * (i.e., encodings from ISO-10646-UCS-(2|4)).
  + * 
  + * @xerces.internal
    *
    * @author Neil Graham, IBM
    *
  
  
  
  1.11      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/io/UTF8Reader.java
  
  Index: UTF8Reader.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/io/UTF8Reader.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- UTF8Reader.java   4 Mar 2004 19:27:13 -0000       1.10
  +++ UTF8Reader.java   4 Oct 2004 22:07:41 -0000       1.11
  @@ -27,6 +27,8 @@
   /**
    * <p>A UTF-8 reader.</p>
    * 
  + * @xerces.internal
  + * 
    * @author Andy Clark, IBM
    *
    * @version $Id$
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/xpath/XPathException.java
  
  Index: XPathException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/XPathException.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XPathException.java       15 Aug 2004 21:22:16 -0000      1.6
  +++ XPathException.java       4 Oct 2004 22:07:41 -0000       1.7
  @@ -18,6 +18,8 @@
   
   /**
    * XPath exception.
  + * 
  + * @xerces.internal
    *
    * @author Andy Clark, IBM
    *
  
  
  
  1.16      +17 -3     xml-xerces/java/src/org/apache/xerces/impl/xpath/XPath.java
  
  Index: XPath.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/XPath.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- XPath.java        17 Mar 2004 00:24:37 -0000      1.15
  +++ XPath.java        4 Oct 2004 22:07:41 -0000       1.16
  @@ -26,6 +26,8 @@
   
   /**
    * Bare minimum XPath parser.
  + * 
  + * @xerces.internal
    *
    * @author Andy Clark, IBM
    * @version $Id$
  @@ -329,6 +331,8 @@
   
       /**
        * A location path representation for an XPath expression.
  +     * 
  +     * @xerces.internal
        *
        * @author Andy Clark, IBM
        */
  @@ -394,6 +398,8 @@
   
       /**
        * A location path step comprised of an axis and node test.
  +     * 
  +     * @xerces.internal
        *
        * @author Andy Clark, IBM
        */
  @@ -456,6 +462,8 @@
   
       /**
        * Axis.
  +     * 
  +     * @xerces.internal
        *
        * @author Andy Clark, IBM
        */
  @@ -523,6 +531,8 @@
   
       /**
        * Node test.
  +     * 
  +     * @xerces.internal
        *
        * @author Andy Clark, IBM
        */
  @@ -636,6 +646,8 @@
       /**
        * List of tokens.
        * 
  +     * @xerces.internal
  +     * 
        * @author Glenn Marcy, IBM
        * @author Andy Clark, IBM
        *
  @@ -1167,6 +1179,8 @@
       } // class Tokens
   
       /**
  +     * @xerces.internal
  +     * 
        * @author Glenn Marcy, IBM
        * @author Andy Clark, IBM
        *
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/msg/XMLMessageFormatter.java
  
  Index: XMLMessageFormatter.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/msg/XMLMessageFormatter.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XMLMessageFormatter.java  24 Feb 2004 22:59:15 -0000      1.5
  +++ XMLMessageFormatter.java  4 Oct 2004 22:07:41 -0000       1.6
  @@ -26,6 +26,8 @@
   /**
    * XMLMessageFormatter provides error messages for the XML 1.0 Recommendation and 
for 
    * the Namespaces Recommendation
  + * 
  + * @xerces.internal
    *
    * @author Eric Ye, IBM
    * @version $Id$
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to