mrglavas    2004/10/06 07:56:52

  Modified:    java/src/org/apache/xerces/impl/dv/xs TypeValidator.java
                        DecimalDV.java MonthDayDV.java YearDV.java
                        AnySimpleDV.java EntityDV.java
                        AbstractDateTimeDV.java HexBinaryDV.java
                        PrecisionDecimalDV.java DayTimeDurationDV.java
                        IntegerDV.java DurationDV.java DayDV.java
                        DoubleDV.java SchemaDateTimeException.java
                        SchemaDVFactoryImpl.java TimeDV.java ListDV.java
                        QNameDV.java YearMonthDurationDV.java FloatDV.java
                        DateTimeDV.java XSSimpleTypeDecl.java AnyURIDV.java
                        UnionDV.java MonthDV.java BaseDVFactory.java
                        IDDV.java StringDV.java YearMonthDV.java
                        BooleanDV.java Base64BinaryDV.java DateDV.java
                        IDREFDV.java AnyAtomicDV.java FullDVFactory.java
               java/src/org/apache/xerces/impl/dv
                        InvalidDatatypeValueException.java
                        DVFactoryException.java DatatypeException.java
                        SecuritySupport.java
                        InvalidDatatypeFacetException.java
                        ValidatedInfo.java ValidationContext.java
                        SecuritySupport12.java DatatypeValidator.java
                        XSFacets.java DTDDVFactory.java ObjectFactory.java
                        XSSimpleType.java SchemaDVFactory.java
               java/src/org/apache/xerces/impl/dv/dtd
                        XML11IDREFDatatypeValidator.java
                        ListDatatypeValidator.java IDDatatypeValidator.java
                        NOTATIONDatatypeValidator.java
                        XML11DTDDVFactoryImpl.java
                        NMTOKENDatatypeValidator.java
                        StringDatatypeValidator.java
                        XML11NMTOKENDatatypeValidator.java
                        ENTITYDatatypeValidator.java
                        XML11IDDatatypeValidator.java
                        IDREFDatatypeValidator.java DTDDVFactoryImpl.java
               java/src/org/apache/xerces/impl/dv/util ByteListImpl.java
                        Base64.java HexBin.java
  Log:
  Marking several classes as internal with the @xerces.internal tag.

  Patch thanks to Ankit Pasricha.
  
  Revision  Changes    Path
  1.8       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/TypeValidator.java
  
  Index: TypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/TypeValidator.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TypeValidator.java        30 Sep 2004 19:35:19 -0000      1.7
  +++ TypeValidator.java        6 Oct 2004 14:56:46 -0000       1.8
  @@ -24,6 +24,8 @@
    * class. It provides extra information XSSimpleTypeDecl requires from each
    * type: allowed facets, converting String to actual value, check equality,
    * comparison, etc.
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
  
  
  
  1.11      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DecimalDV.java
  
  Index: DecimalDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DecimalDV.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DecimalDV.java    24 Feb 2004 22:44:24 -0000      1.10
  +++ DecimalDV.java    6 Oct 2004 14:56:46 -0000       1.11
  @@ -22,6 +22,8 @@
   /**
    * Represent the schema type "decimal"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/MonthDayDV.java
  
  Index: MonthDayDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/MonthDayDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- MonthDayDV.java   3 Oct 2004 21:29:44 -0000       1.11
  +++ MonthDayDV.java   6 Oct 2004 14:56:46 -0000       1.12
  @@ -22,6 +22,8 @@
   /**
    * Validator for <gMonthDay> datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    *
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearDV.java
  
  Index: YearDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- YearDV.java       3 Oct 2004 21:29:44 -0000       1.11
  +++ YearDV.java       6 Oct 2004 14:56:46 -0000       1.12
  @@ -22,6 +22,8 @@
   /**
    * Validator for <gYear> datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    *
  
  
  
  1.5       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnySimpleDV.java
  
  Index: AnySimpleDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnySimpleDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AnySimpleDV.java  24 Feb 2004 22:44:24 -0000      1.4
  +++ AnySimpleDV.java  6 Oct 2004 14:56:46 -0000       1.5
  @@ -22,6 +22,8 @@
   /**
    * Represent the schema type "anySimpleType"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.6       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/EntityDV.java
  
  Index: EntityDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/EntityDV.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EntityDV.java     24 Feb 2004 22:44:24 -0000      1.5
  +++ EntityDV.java     6 Oct 2004 14:56:46 -0000       1.6
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "entity"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.20      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AbstractDateTimeDV.java
  
  Index: AbstractDateTimeDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AbstractDateTimeDV.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- AbstractDateTimeDV.java   3 Oct 2004 21:29:44 -0000       1.19
  +++ AbstractDateTimeDV.java   6 Oct 2004 14:56:46 -0000       1.20
  @@ -28,6 +28,8 @@
    *          two parser instances at the same time, then the same simple type
    *          decl object can be used to validate two strings at the same time.
    *          -SG
  + *          
  + * @xerces.internal 
    *
    * @author Elena Litani
    * @author Len Berman
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/HexBinaryDV.java
  
  Index: HexBinaryDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/HexBinaryDV.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HexBinaryDV.java  15 Sep 2004 05:12:23 -0000      1.6
  +++ HexBinaryDV.java  6 Oct 2004 14:56:46 -0000       1.7
  @@ -24,6 +24,8 @@
   /**
    * Represent the schema type "hexBinary"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.2       +3 -3      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/PrecisionDecimalDV.java
  
  Index: PrecisionDecimalDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/PrecisionDecimalDV.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PrecisionDecimalDV.java   30 Sep 2004 04:13:15 -0000      1.1
  +++ PrecisionDecimalDV.java   6 Oct 2004 14:56:46 -0000       1.2
  @@ -19,9 +19,9 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * <p><b>EXPERIMENTAL: This class should not be considered stable.
  - * It is likely it may be altered or replaced/removed in the future.</b></p>
    * Validator for <precisionDecimal> datatype (W3C Schema 1.1)
  + * 
  + * @xerces.experimental
    * 
    * @author Ankit Pasricha, IBM
    * 
  
  
  
  1.5       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DayTimeDurationDV.java
  
  Index: DayTimeDurationDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DayTimeDurationDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DayTimeDurationDV.java    29 Sep 2004 21:39:01 -0000      1.4
  +++ DayTimeDurationDV.java    6 Oct 2004 14:56:46 -0000       1.5
  @@ -20,6 +20,8 @@
   
   /**
    * Used to validate the <dayTimeDuration> type
  + *
  + * @xerces.internal 
    * 
    * @author Ankit Pasricha, IBM
    * 
  
  
  
  1.3       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IntegerDV.java
  
  Index: IntegerDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IntegerDV.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IntegerDV.java    24 Feb 2004 22:44:24 -0000      1.2
  +++ IntegerDV.java    6 Oct 2004 14:56:46 -0000       1.3
  @@ -22,6 +22,8 @@
   /**
    * Represent the schema type "integer"
    *
  + * @xerces.internal 
  + *
    * @author Sandy Gao, IBM
    *
    * @version $Id$
  
  
  
  1.13      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DurationDV.java
  
  Index: DurationDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DurationDV.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DurationDV.java   3 Oct 2004 21:29:44 -0000       1.12
  +++ DurationDV.java   6 Oct 2004 14:56:46 -0000       1.13
  @@ -22,6 +22,8 @@
   /**
    * Validator for &lt;duration&gt; datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    * @version $Id$
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DayDV.java
  
  Index: DayDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DayDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DayDV.java        3 Oct 2004 21:29:44 -0000       1.11
  +++ DayDV.java        6 Oct 2004 14:56:47 -0000       1.12
  @@ -22,6 +22,8 @@
   /**
    * Validator for &lt;gDay&gt; datatype (W3C Schema datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    * @version $Id$
  
  
  
  1.11      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DoubleDV.java
  
  Index: DoubleDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DoubleDV.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DoubleDV.java     1 Oct 2004 03:43:21 -0000       1.10
  +++ DoubleDV.java     6 Oct 2004 14:56:47 -0000       1.11
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "double"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/SchemaDateTimeException.java
  
  Index: SchemaDateTimeException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/SchemaDateTimeException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SchemaDateTimeException.java      15 Aug 2004 21:22:16 -0000      1.5
  +++ SchemaDateTimeException.java      6 Oct 2004 14:56:47 -0000       1.6
  @@ -17,6 +17,8 @@
   package org.apache.xerces.impl.dv.xs;
   
   /**
  + * @xerces.internal 
  + *  
    * @version $Id$
    */
   public class SchemaDateTimeException extends RuntimeException {
  
  
  
  1.19      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/SchemaDVFactoryImpl.java
  
  Index: SchemaDVFactoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/SchemaDVFactoryImpl.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- SchemaDVFactoryImpl.java  3 Oct 2004 21:29:44 -0000       1.18
  +++ SchemaDVFactoryImpl.java  6 Oct 2004 14:56:47 -0000       1.19
  @@ -27,6 +27,8 @@
   
   /**
    * the factory to create/return built-in schema DVs and create user-defined DVs
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/TimeDV.java
  
  Index: TimeDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/TimeDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- TimeDV.java       3 Oct 2004 21:29:44 -0000       1.11
  +++ TimeDV.java       6 Oct 2004 14:56:47 -0000       1.12
  @@ -21,6 +21,8 @@
   
   /**
    * Validator for &lt;time&gt; datatype (W3C Schema Datatypes)
  + * 
  + * @xerces.internal 
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  
  
  
  1.9       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/ListDV.java
  
  Index: ListDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/ListDV.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ListDV.java       15 Sep 2004 05:24:07 -0000      1.8
  +++ ListDV.java       6 Oct 2004 14:56:47 -0000       1.9
  @@ -24,6 +24,8 @@
   /**
    * Represent the schema list types
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.8       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/QNameDV.java
  
  Index: QNameDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/QNameDV.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- QNameDV.java      24 Feb 2004 22:44:24 -0000      1.7
  +++ QNameDV.java      6 Oct 2004 14:56:47 -0000       1.8
  @@ -24,6 +24,8 @@
   /**
    * Represent the schema type "QName" and "NOTATION"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.5       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearMonthDurationDV.java
  
  Index: YearMonthDurationDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearMonthDurationDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- YearMonthDurationDV.java  29 Sep 2004 21:39:01 -0000      1.4
  +++ YearMonthDurationDV.java  6 Oct 2004 14:56:47 -0000       1.5
  @@ -20,6 +20,8 @@
   
   /**
    * Used to validate the <yearMonthDuration> type
  + *
  + * @xerces.internal  
    * 
    * @author Ankit Pasricha, IBM
    *  
  
  
  
  1.11      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/FloatDV.java
  
  Index: FloatDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/FloatDV.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- FloatDV.java      1 Oct 2004 03:43:21 -0000       1.10
  +++ FloatDV.java      6 Oct 2004 14:56:47 -0000       1.11
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "float"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateTimeDV.java
  
  Index: DateTimeDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateTimeDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DateTimeDV.java   3 Oct 2004 21:29:44 -0000       1.11
  +++ DateTimeDV.java   6 Oct 2004 14:56:47 -0000       1.12
  @@ -22,6 +22,8 @@
   /**
    * Validator for &lt;dateTime&gt; datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    *
  
  
  
  1.58      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java
  
  Index: XSSimpleTypeDecl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- XSSimpleTypeDecl.java     3 Oct 2004 21:29:44 -0000       1.57
  +++ XSSimpleTypeDecl.java     6 Oct 2004 14:56:47 -0000       1.58
  @@ -45,6 +45,8 @@
   import org.apache.xerces.xs.XSTypeDefinition;
   
   /**
  + * @xerces.internal
  + *  
    * @author Sandy Gao, IBM
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    *
  
  
  
  1.7       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnyURIDV.java
  
  Index: AnyURIDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnyURIDV.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AnyURIDV.java     24 Feb 2004 22:44:24 -0000      1.6
  +++ AnyURIDV.java     6 Oct 2004 14:56:47 -0000       1.7
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "anyURI"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/UnionDV.java
  
  Index: UnionDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/UnionDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- UnionDV.java      24 Feb 2004 22:44:24 -0000      1.4
  +++ UnionDV.java      6 Oct 2004 14:56:47 -0000       1.5
  @@ -21,6 +21,8 @@
   
   /**
    * Represent the schema union types
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
  
  
  
  1.14      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/MonthDV.java
  
  Index: MonthDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/MonthDV.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- MonthDV.java      3 Oct 2004 21:29:44 -0000       1.13
  +++ MonthDV.java      6 Oct 2004 14:56:47 -0000       1.14
  @@ -22,6 +22,8 @@
   /**
    * Validator for &lt;gMonth&gt; datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    *
  
  
  
  1.8       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/BaseDVFactory.java
  
  Index: BaseDVFactory.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/BaseDVFactory.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BaseDVFactory.java        3 Oct 2004 21:29:44 -0000       1.7
  +++ BaseDVFactory.java        6 Oct 2004 14:56:47 -0000       1.8
  @@ -26,6 +26,8 @@
   /**
    * the factory to create/return built-in schema DVs and create user-defined DVs
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDDV.java
  
  Index: IDDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IDDV.java 24 Feb 2004 22:44:24 -0000      1.4
  +++ IDDV.java 6 Oct 2004 14:56:47 -0000       1.5
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "ID"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/StringDV.java
  
  Index: StringDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/StringDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- StringDV.java     24 Feb 2004 22:44:23 -0000      1.4
  +++ StringDV.java     6 Oct 2004 14:56:47 -0000       1.5
  @@ -21,6 +21,8 @@
   
   /**
    * Represent the schema type "string"
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
  
  
  
  1.12      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearMonthDV.java
  
  Index: YearMonthDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/YearMonthDV.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- YearMonthDV.java  3 Oct 2004 21:29:44 -0000       1.11
  +++ YearMonthDV.java  6 Oct 2004 14:56:47 -0000       1.12
  @@ -22,6 +22,8 @@
   /**
    * Validator for &lt;gYearMonth&gt; datatype (W3C Schema Datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
    *
  
  
  
  1.5       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/BooleanDV.java
  
  Index: BooleanDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/BooleanDV.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BooleanDV.java    24 Feb 2004 22:44:24 -0000      1.4
  +++ BooleanDV.java    6 Oct 2004 14:56:47 -0000       1.5
  @@ -21,6 +21,8 @@
   
   /**
    * Represent the schema type "boolean"
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/Base64BinaryDV.java
  
  Index: Base64BinaryDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/Base64BinaryDV.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Base64BinaryDV.java       15 Sep 2004 05:12:23 -0000      1.6
  +++ Base64BinaryDV.java       6 Oct 2004 14:56:47 -0000       1.7
  @@ -24,6 +24,8 @@
   /**
    * Represent the schema type "base64Binary"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.14      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateDV.java
  
  Index: DateDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateDV.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- DateDV.java       3 Oct 2004 21:29:44 -0000       1.13
  +++ DateDV.java       6 Oct 2004 14:56:47 -0000       1.14
  @@ -21,6 +21,8 @@
   /**
    * Validator for <date> datatype (W3C Schema datatypes)
    *
  + * @xerces.internal 
  + *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystems Inc.
    *
  
  
  
  1.6       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDREFDV.java
  
  Index: IDREFDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDREFDV.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- IDREFDV.java      24 Feb 2004 22:44:24 -0000      1.5
  +++ IDREFDV.java      6 Oct 2004 14:56:47 -0000       1.6
  @@ -23,6 +23,8 @@
   /**
    * Represent the schema type "IDREF"
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.2       +3 -3      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnyAtomicDV.java
  
  Index: AnyAtomicDV.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/AnyAtomicDV.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AnyAtomicDV.java  30 Sep 2004 04:12:32 -0000      1.1
  +++ AnyAtomicDV.java  6 Oct 2004 14:56:47 -0000       1.2
  @@ -20,9 +20,9 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * <p><b>EXPERIMENTAL: This class should not be considered stable.
  - * It is likely it may be altered or replaced/removed in the future.</b></p>
    * Represent the schema type "anyAtomicType"
  + * 
  + * @xerces.experimental
    *
    * @author Ankit Pasricha, IBM
    * 
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/xs/FullDVFactory.java
  
  Index: FullDVFactory.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/FullDVFactory.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- FullDVFactory.java        24 Feb 2004 22:44:24 -0000      1.6
  +++ FullDVFactory.java        6 Oct 2004 14:56:47 -0000       1.7
  @@ -24,6 +24,8 @@
   /**
    * the factory to create/return built-in schema DVs and create user-defined DVs
    *
  + * @xerces.internal 
  + *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    * @author Sandy Gao, IBM
    *
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/InvalidDatatypeValueException.java
  
  Index: InvalidDatatypeValueException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/InvalidDatatypeValueException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- InvalidDatatypeValueException.java        15 Aug 2004 21:22:15 -0000      1.5
  +++ InvalidDatatypeValueException.java        6 Oct 2004 14:56:50 -0000       1.6
  @@ -19,6 +19,8 @@
   /**
    * Datatype exception for invalid values.
    *
  + * @xerces.internal 
  + *
    * @author Sandy Gao, IBM
    *
    * @version $Id$
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/DVFactoryException.java
  
  Index: DVFactoryException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/DVFactoryException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DVFactoryException.java   15 Aug 2004 21:22:15 -0000      1.5
  +++ DVFactoryException.java   6 Oct 2004 14:56:50 -0000       1.6
  @@ -20,6 +20,8 @@
    * A runtime exception that's thrown if an error happens when the application
    * tries to get a DV factory instance.
    *
  + * @xerces.internal 
  + *
    * @version $Id$
    */
   public class DVFactoryException extends RuntimeException {
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/DatatypeException.java
  
  Index: DatatypeException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/DatatypeException.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DatatypeException.java    15 Aug 2004 21:22:15 -0000      1.6
  +++ DatatypeException.java    6 Oct 2004 14:56:50 -0000       1.7
  @@ -25,6 +25,8 @@
    * created from an error message. For Schema types, it needs an error code
    * (as defined in Appendix C of the structure spec), plus an array of arguents,
    * for error message substitution.
  + * 
  + * @xerces.internal 
    *
    * @author Sandy Gao, IBM
    *
  
  
  
  1.4       +2 -0      
xml-xerces/java/src/org/apache/xerces/impl/dv/SecuritySupport.java
  
  Index: SecuritySupport.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/SecuritySupport.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SecuritySupport.java      24 Feb 2004 22:44:26 -0000      1.3
  +++ SecuritySupport.java      6 Oct 2004 14:56:50 -0000       1.4
  @@ -22,6 +22,8 @@
    * This class is duplicated for each JAXP subpackage so keep it in sync.
    * It is package private and therefore is not exposed as part of the JAXP
    * API.
  + * 
  + * @xerces.internal 
    *
    * Base class with security related methods that work on JDK 1.1.
    */
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/InvalidDatatypeFacetException.java
  
  Index: InvalidDatatypeFacetException.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/InvalidDatatypeFacetException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- InvalidDatatypeFacetException.java        15 Aug 2004 21:22:15 -0000      1.5
  +++ InvalidDatatypeFacetException.java        6 Oct 2004 14:56:50 -0000       1.6
  @@ -20,6 +20,8 @@
    * Datatype exception for invalid facet. This exception is only used by
    * schema datatypes.
    *
  + * @xerces.internal 
  + *
    * @author Sandy Gao, IBM
    *
    * @version $Id$
  
  
  
  1.8       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/ValidatedInfo.java
  
  Index: ValidatedInfo.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/ValidatedInfo.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ValidatedInfo.java        24 Feb 2004 22:44:26 -0000      1.7
  +++ ValidatedInfo.java        6 Oct 2004 14:56:50 -0000       1.8
  @@ -21,6 +21,8 @@
   /**
    * Class to get the information back after content is validated. This info
    * would be filled by validate().
  + * 
  + * @xerces.internal 
    *
    * @author Neeraj Bajaj, Sun Microsystems, inc.
    *
  
  
  
  1.5       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/ValidationContext.java
  
  Index: ValidationContext.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/ValidationContext.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ValidationContext.java    24 Feb 2004 22:44:26 -0000      1.4
  +++ ValidationContext.java    6 Oct 2004 14:56:50 -0000       1.5
  @@ -19,6 +19,8 @@
   /**
    * ValidationContext has all the information required for the
    * validation of: id, idref, entity, notation, qname
  + * 
  + * @xerces.internal 
    *
    * @author Sandy Gao, IBM
    * @version $Id$
  
  
  
  1.4       +2 -0      
xml-xerces/java/src/org/apache/xerces/impl/dv/SecuritySupport12.java
  
  Index: SecuritySupport12.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/SecuritySupport12.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SecuritySupport12.java    24 Feb 2004 22:44:25 -0000      1.3
  +++ SecuritySupport12.java    6 Oct 2004 14:56:50 -0000       1.4
  @@ -24,6 +24,8 @@
    * It is package private and therefore is not exposed as part of the JAXP
    * API.
    *
  + * @xerces.internal 
  + *
    * Security related methods that only work on J2SE 1.2 and newer.
    */
   class SecuritySupport12 extends SecuritySupport {
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/DatatypeValidator.java
  
  Index: DatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/DatatypeValidator.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DatatypeValidator.java    24 Feb 2004 22:44:26 -0000      1.6
  +++ DatatypeValidator.java    6 Oct 2004 14:56:50 -0000       1.7
  @@ -21,6 +21,8 @@
   /**
    * The interface that a DTD datatype must implement. The implementation of this
    * interface must be thread-safe.
  + * 
  + * @xerces.internal
    *
    * @author Sandy Gao, IBM
    *
  
  
  
  1.10      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/XSFacets.java
  
  Index: XSFacets.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/XSFacets.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSFacets.java     24 Feb 2004 22:44:26 -0000      1.9
  +++ XSFacets.java     6 Oct 2004 14:56:50 -0000       1.10
  @@ -25,6 +25,8 @@
   /**
    * The class used to pass all facets to [EMAIL PROTECTED] XSSimpleType#applyFacets}.
    *
  + * @xerces.internal 
  + *
    * @author Sandy Gao, IBM
    *
    * @version $Id$
  
  
  
  1.9       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/DTDDVFactory.java
  
  Index: DTDDVFactory.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/DTDDVFactory.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- DTDDVFactory.java 24 Feb 2004 22:44:26 -0000      1.8
  +++ DTDDVFactory.java 6 Oct 2004 14:56:50 -0000       1.9
  @@ -22,6 +22,8 @@
    * The factory to create and return DTD types. The implementation should
    * store the created datatypes in static data, so that they can be shared by
    * multiple parser instance, and multiple threads.
  + * 
  + * @xerces.internal 
    *
    * @author Sandy Gao, IBM
    *
  
  
  
  1.9       +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/ObjectFactory.java
  
  Index: ObjectFactory.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/ObjectFactory.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ObjectFactory.java        15 Aug 2004 21:22:15 -0000      1.8
  +++ ObjectFactory.java        6 Oct 2004 14:56:50 -0000       1.9
  @@ -36,6 +36,8 @@
    * The code also runs both as part of an unbundled jar file and
    * when bundled as part of the JDK.
    * <p>
  + * 
  + * @xerces.internal 
    *
    * @version $Id$
    */
  
  
  
  1.17      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/XSSimpleType.java
  
  Index: XSSimpleType.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/XSSimpleType.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- XSSimpleType.java 3 Oct 2004 21:48:35 -0000       1.16
  +++ XSSimpleType.java 6 Oct 2004 14:56:50 -0000       1.17
  @@ -25,6 +25,8 @@
    * Any simple type (atomic, list or union) will implement this interface.
    * It inherits from <code>XSTypeDecl</code>.
    *
  + * @xerces.internal 
  + *
    * @author Sandy Gao, IBM
    *
    * @version $Id$
  
  
  
  1.15      +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/SchemaDVFactory.java
  
  Index: SchemaDVFactory.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/SchemaDVFactory.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- SchemaDVFactory.java      3 Oct 2004 21:48:35 -0000       1.14
  +++ SchemaDVFactory.java      6 Oct 2004 14:56:50 -0000       1.15
  @@ -30,6 +30,8 @@
    *
    * The implementation should store the built-in datatypes in static data, so
    * that they can be shared by multiple parser instance, and multiple threads.
  + * 
  + * @xerces.internal 
    *
    * @author Sandy Gao, IBM
    *
  
  
  
  1.4       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11IDREFDatatypeValidator.java
  
  Index: XML11IDREFDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11IDREFDatatypeValidator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XML11IDREFDatatypeValidator.java  24 Feb 2004 22:44:25 -0000      1.3
  +++ XML11IDREFDatatypeValidator.java  6 Oct 2004 14:56:50 -0000       1.4
  @@ -31,6 +31,8 @@
    * <P>The Value space of IDREF is scoped to a specific
    * instance document</P>
    * 
  + * @xerces.internal 
  + * 
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
    * @author Neil Graham, IBM
  
  
  
  1.7       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/ListDatatypeValidator.java
  
  Index: ListDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/ListDatatypeValidator.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ListDatatypeValidator.java        24 Feb 2004 22:44:25 -0000      1.6
  +++ ListDatatypeValidator.java        6 Oct 2004 14:56:50 -0000       1.7
  @@ -25,6 +25,8 @@
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
    * 
  + * @xerces.internal 
  + * 
    * @version $Id$
    */
   public class ListDatatypeValidator implements DatatypeValidator {
  
  
  
  1.9       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/IDDatatypeValidator.java
  
  Index: IDDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/IDDatatypeValidator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IDDatatypeValidator.java  24 Feb 2004 22:44:25 -0000      1.8
  +++ IDDatatypeValidator.java  6 Oct 2004 14:56:51 -0000       1.9
  @@ -33,6 +33,8 @@
    * document as a value of this type; i.e., ID values
    * must uniquely identify the elements which bear
    * them.</P>
  + *
  + * @xerces.internal  
    * 
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
  
  
  
  1.8       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/NOTATIONDatatypeValidator.java
  
  Index: NOTATIONDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/NOTATIONDatatypeValidator.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- NOTATIONDatatypeValidator.java    24 Feb 2004 22:44:25 -0000      1.7
  +++ NOTATIONDatatypeValidator.java    6 Oct 2004 14:56:51 -0000       1.8
  @@ -22,6 +22,8 @@
    * NOTATIONValidator defines the interface that data type validators must obey.
    * These validators can be supplied by the application writer and may be useful as
    * standalone code as well as plugins to the validator architecture.
  + *
  + * @xerces.internal  
    * 
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
  
  
  
  1.4       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11DTDDVFactoryImpl.java
  
  Index: XML11DTDDVFactoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11DTDDVFactoryImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XML11DTDDVFactoryImpl.java        24 Feb 2004 22:44:25 -0000      1.3
  +++ XML11DTDDVFactoryImpl.java        6 Oct 2004 14:56:51 -0000       1.4
  @@ -23,6 +23,8 @@
   
   /**
    * the factory to create/return built-in XML 1.1 DVs and create user-defined DVs
  + * 
  + * @xerces.internal  
    *
    * @author Neil Graham, IBM
    *
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/NMTOKENDatatypeValidator.java
  
  Index: NMTOKENDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/NMTOKENDatatypeValidator.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- NMTOKENDatatypeValidator.java     24 Feb 2004 22:44:25 -0000      1.5
  +++ NMTOKENDatatypeValidator.java     6 Oct 2004 14:56:51 -0000       1.6
  @@ -24,6 +24,8 @@
    *
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
  + *
  + * @xerces.internal  
    * 
    * @version $Id$
    */
  
  
  
  1.6       +4 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/StringDatatypeValidator.java
  
  Index: StringDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/StringDatatypeValidator.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- StringDatatypeValidator.java      24 Feb 2004 22:44:25 -0000      1.5
  +++ StringDatatypeValidator.java      6 Oct 2004 14:56:51 -0000       1.6
  @@ -30,6 +30,9 @@
    * character has a corresponding Universal Code Set
    * code point ([ISO 10646],[Unicode] and [Unicode3]),
    * which is an integer.</P>
  + * 
  + * @xerces.internal 
  + * 
    * @version $Id$
    */
   public class StringDatatypeValidator implements DatatypeValidator {
  
  
  
  1.3       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11NMTOKENDatatypeValidator.java
  
  Index: XML11NMTOKENDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11NMTOKENDatatypeValidator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XML11NMTOKENDatatypeValidator.java        24 Feb 2004 22:44:25 -0000      1.2
  +++ XML11NMTOKENDatatypeValidator.java        6 Oct 2004 14:56:51 -0000       1.3
  @@ -22,6 +22,8 @@
   /**
    * NMTOKEN datatype validator for NMTokens from XML 1.1.
    *
  + * @xerces.internal 
  + *
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
    * @author Neil Graham, IBM
  
  
  
  1.9       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/ENTITYDatatypeValidator.java
  
  Index: ENTITYDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/ENTITYDatatypeValidator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ENTITYDatatypeValidator.java      24 Feb 2004 22:44:25 -0000      1.8
  +++ ENTITYDatatypeValidator.java      6 Oct 2004 14:56:51 -0000       1.9
  @@ -32,6 +32,8 @@
    * The value space of ENTITY is scoped to a specific
    * instance document.</P>
    * 
  + * @xerces.internal  
  + *
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
    * 
  
  
  
  1.4       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11IDDatatypeValidator.java
  
  Index: XML11IDDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/XML11IDDatatypeValidator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XML11IDDatatypeValidator.java     24 Feb 2004 22:44:25 -0000      1.3
  +++ XML11IDDatatypeValidator.java     6 Oct 2004 14:56:51 -0000       1.4
  @@ -34,6 +34,8 @@
    * must uniquely identify the elements which bear
    * them.</P>
    * 
  + * @xerces.internal  
  + * 
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
    * @author Neil Graham, IBM
  
  
  
  1.9       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/IDREFDatatypeValidator.java
  
  Index: IDREFDatatypeValidator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/IDREFDatatypeValidator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IDREFDatatypeValidator.java       24 Feb 2004 22:44:25 -0000      1.8
  +++ IDREFDatatypeValidator.java       6 Oct 2004 14:56:51 -0000       1.9
  @@ -30,6 +30,8 @@
    * production.</P>
    * <P>The Value space of IDREF is scoped to a specific
    * instance document</P>
  + *
  + * @xerces.internal  
    * 
    * @author Jeffrey Rodriguez, IBM
    * @author Sandy Gao, IBM
  
  
  
  1.6       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/DTDDVFactoryImpl.java
  
  Index: DTDDVFactoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/dtd/DTDDVFactoryImpl.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DTDDVFactoryImpl.java     24 Feb 2004 22:44:25 -0000      1.5
  +++ DTDDVFactoryImpl.java     6 Oct 2004 14:56:51 -0000       1.6
  @@ -22,6 +22,8 @@
   
   /**
    * the factory to create/return built-in schema DVs and create user-defined DVs
  + * 
  + * @xerces.internal 
    *
    * @author Sandy Gao, IBM
    *
  
  
  
  1.4       +3 -1      
xml-xerces/java/src/org/apache/xerces/impl/dv/util/ByteListImpl.java
  
  Index: ByteListImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/util/ByteListImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ByteListImpl.java 29 Sep 2004 21:39:01 -0000      1.3
  +++ ByteListImpl.java 6 Oct 2004 14:56:52 -0000       1.4
  @@ -20,6 +20,8 @@
   
   /**
    * Implementation of <code>org.apache.xerces.xs.datatypes.ByteList</code>.
  + *
  + * @xerces.internal 
    * 
    * @author Ankit Pasricha, IBM
    * 
  
  
  
  1.12      +3 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/util/Base64.java
  
  Index: Base64.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/util/Base64.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Base64.java       3 Oct 2004 21:29:43 -0000       1.11
  +++ Base64.java       6 Oct 2004 14:56:52 -0000       1.12
  @@ -28,6 +28,8 @@
    * data. You need the data that you will encode/decode
    * already on a byte arrray.
    *
  + * @xerces.internal 
  + *
    * @author Jeffrey Rodriguez
    * @author Sandy Gao
    * @version $Id$
  
  
  
  1.11      +4 -1      xml-xerces/java/src/org/apache/xerces/impl/dv/util/HexBin.java
  
  Index: HexBin.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/util/HexBin.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HexBin.java       3 Oct 2004 21:29:43 -0000       1.10
  +++ HexBin.java       6 Oct 2004 14:56:52 -0000       1.11
  @@ -20,6 +20,9 @@
    * format validation
    *
    * This class encodes/decodes hexadecimal data
  + * 
  + * @xerces.internal  
  + * 
    * @author Jeffrey Rodriguez
    * @version $Id$
    */
  
  
  

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

Reply via email to