mrglavas    2004/10/03 14:29:44

  Modified:    java/src/org/apache/xerces/impl/dv/util Base64.java
                        HexBin.java
               java/src/org/apache/xerces/impl/dv/xs BaseDVFactory.java
                        DurationDV.java MonthDayDV.java YearMonthDV.java
                        DateDV.java DateTimeDV.java YearDV.java DayDV.java
                        XSSimpleTypeDecl.java MonthDV.java
                        SchemaDVFactoryImpl.java AbstractDateTimeDV.java
                        TimeDV.java
  Log:
  Fixing some Javadoc warnings.
  
  Revision  Changes    Path
  1.11      +2 -2      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- Base64.java       16 Jun 2004 15:57:28 -0000      1.10
  +++ Base64.java       3 Oct 2004 21:29:43 -0000       1.11
  @@ -189,7 +189,7 @@
       /**
        * Decodes Base64 data into octects
        *
  -     * @param binaryData Byte array containing Base64 data
  +     * @param encoded string containing Base64 data
        * @return Array containind decoded data.
        */
       public static byte[] decode(String encoded) {
  
  
  
  1.10      +2 -2      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.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- HexBin.java       24 Feb 2004 22:44:26 -0000      1.9
  +++ HexBin.java       3 Oct 2004 21:29:43 -0000       1.10
  @@ -76,7 +76,7 @@
       /**
        * Decode hex string to a byte array
        *
  -     * @param binaryData  encoded string
  +     * @param encoded  encoded string
        * @return return     array of byte to encode
        */
       static public byte[] decode(String encoded) {
  
  
  
  1.7       +2 -2      
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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BaseDVFactory.java        24 Feb 2004 22:44:24 -0000      1.6
  +++ BaseDVFactory.java        3 Oct 2004 21:29:44 -0000       1.7
  @@ -106,7 +106,7 @@
        * @param name              name of the new type, could be null
        * @param targetNamespace   target namespace of the new type, could be null
        * @param finalSet          value of "final"
  -     * @param base              member types of the union type
  +     * @param memberTypes       member types of the union type
        * @param annotations       set of annotations
        * @return                  the newly created simple type
        */
  
  
  
  1.12      +3 -3      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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DurationDV.java   15 Sep 2004 05:12:23 -0000      1.11
  +++ DurationDV.java   3 Oct 2004 21:29:44 -0000       1.12
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <duration> datatype (W3C Schema Datatypes)
  + * Validator for &lt;duration&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -55,7 +55,7 @@
        * Parses, validates and computes normalized version of duration object
        *
        * @param str    The lexical representation of duration object PnYn MnDTnH nMnS
  -     * @param date   uninitialized date object
  +     * @param durationType
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.11      +2 -3      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- MonthDayDV.java   28 Sep 2004 21:12:33 -0000      1.10
  +++ MonthDayDV.java   3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <gMonthDay> datatype (W3C Schema Datatypes)
  + * Validator for &lt;gMonthDay&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -52,7 +52,6 @@
        *
        * @param str    The lexical representation of gMonthDay object --MM-DD
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.11      +2 -3      
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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- YearMonthDV.java  28 Sep 2004 21:12:33 -0000      1.10
  +++ YearMonthDV.java  3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <gYearMonth> datatype (W3C Schema Datatypes)
  + * Validator for &lt;gYearMonth&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -48,7 +48,6 @@
        *
        * @param str    The lexical representation of gYearMonth object CCYY-MM
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.13      +2 -3      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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DateDV.java       28 Sep 2004 21:12:33 -0000      1.12
  +++ DateDV.java       3 Oct 2004 21:29:44 -0000       1.13
  @@ -41,11 +41,10 @@
        *
        * @param str    The lexical representation of dateTime object CCYY-MM-DD
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized dateTime representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  -    protected DateTimeData parse(String str) throws SchemaDateTimeException{
  +    protected DateTimeData parse(String str) throws SchemaDateTimeException {
           DateTimeData date = new DateTimeData(this);
           int len = str.length();
   
  
  
  
  1.11      +2 -3      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DateTimeDV.java   28 Sep 2004 21:12:33 -0000      1.10
  +++ DateTimeDV.java   3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <dateTime> datatype (W3C Schema Datatypes)
  + * Validator for &lt;dateTime&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -42,7 +42,6 @@
        *
        * @param str    The lexical representation of dateTime object 
CCYY-MM-DDThh:mm:ss.sss
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized dateTime representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.11      +2 -3      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- YearDV.java       28 Sep 2004 21:12:33 -0000      1.10
  +++ YearDV.java       3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <gYear> datatype (W3C Schema Datatypes)
  + * Validator for &lt;gYear&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -49,7 +49,6 @@
        *
        * @param str    The lexical representation of year object CCYY
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.11      +2 -3      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DayDV.java        28 Sep 2004 21:12:33 -0000      1.10
  +++ DayDV.java        3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <gDay> datatype (W3C Schema datatypes)
  + * Validator for &lt;gDay&gt; datatype (W3C Schema datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -45,7 +45,6 @@
        * @param str    The lexical representation of gDay object ---DD
        *               with possible time zone Z or (-),(+)hh:mm
        *               Pattern: ---(\\d\\d)(Z|(([-+])(\\d\\d)(:(\\d\\d))?
  -     * @param date   uninitialized date object
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.57      +2 -3      
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.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- XSSimpleTypeDecl.java     30 Sep 2004 19:35:19 -0000      1.56
  +++ XSSimpleTypeDecl.java     3 Oct 2004 21:29:44 -0000       1.57
  @@ -1493,7 +1493,6 @@
       /**
        * validate an actual value against this DV
        *
  -     * @param value         the actual value that needs to be validated
        * @param context       the validation context
        * @param validatedInfo used to provide the actual value and member types
        */
  @@ -2339,7 +2338,7 @@
        *            The namspace of the ancestor type declaration
        * @param ancestorName
        *            The name of the ancestor type declaration
  -     * @param derivation
  +     * @param derivationMethod
        *            The derivation method
        * 
        * @return boolean True if the ancestor type is derived from the reference type 
by the specifiied derivation method. 
  
  
  
  1.13      +2 -3      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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- MonthDV.java      28 Sep 2004 21:12:33 -0000      1.12
  +++ MonthDV.java      3 Oct 2004 21:29:44 -0000       1.13
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <gMonth> datatype (W3C Schema Datatypes)
  + * Validator for &lt;gMonth&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -49,7 +49,6 @@
        *
        * @param str    The lexical representation of gMonth object --MM
        *               with possible time zone Z or (-),(+)hh:mm
  -     * @param date   uninitialized date object
        * @return normalized date representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  
  1.18      +2 -2      
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.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- SchemaDVFactoryImpl.java  30 Sep 2004 04:19:34 -0000      1.17
  +++ SchemaDVFactoryImpl.java  3 Oct 2004 21:29:44 -0000       1.18
  @@ -118,7 +118,7 @@
        * @param name              name of the new type, could be null
        * @param targetNamespace   target namespace of the new type, could be null
        * @param finalSet          value of "final"
  -     * @param base              member types of the union type
  +     * @param memberTypes       member types of the union type
        * @param annotations       set of annotations
        * @return                  the newly created simple type
        */
  
  
  
  1.19      +11 -9     
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.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- AbstractDateTimeDV.java   30 Sep 2004 19:35:19 -0000      1.18
  +++ AbstractDateTimeDV.java   3 Oct 2004 21:29:44 -0000       1.19
  @@ -249,9 +249,10 @@
       /**
        * Parses date CCYY-MM-DD
        *
  -     * @param start
  -     * @param end
  -     * @param data
  +     * @param buffer
  +     * @param start start position
  +     * @param end end position
  +     * @param date
        * @exception RuntimeException
        */
       protected int getDate (String buffer, int start, int end, DateTimeData date) 
throws RuntimeException{
  @@ -269,9 +270,10 @@
       /**
        * Parses date CCYY-MM
        *
  -     * @param start
  -     * @param end
  -     * @param data
  +     * @param buffer
  +     * @param start start position
  +     * @param end end position
  +     * @param date
        * @exception RuntimeException
        */
       protected int getYearMonth (String buffer, int start, int end, DateTimeData 
date) throws RuntimeException{
  @@ -479,8 +481,8 @@
       /**
        * Given start and end position, parses string value
        *
  -     * @param value  string to parse
  -     * @param start  Start position
  +     * @param buffer string to parse
  +     * @param start  start position
        * @param end    end position
        * @return  return integer representation of characters
        */
  
  
  
  1.11      +2 -3      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TimeDV.java       28 Sep 2004 21:12:33 -0000      1.10
  +++ TimeDV.java       3 Oct 2004 21:29:44 -0000       1.11
  @@ -20,7 +20,7 @@
   import org.apache.xerces.impl.dv.ValidationContext;
   
   /**
  - * Validator for <time> datatype (W3C Schema Datatypes)
  + * Validator for &lt;time&gt; datatype (W3C Schema Datatypes)
    *
    * @author Elena Litani
    * @author Gopal Sharma, SUN Microsystem Inc.
  @@ -49,7 +49,6 @@
        * @param str    The lexical representation of time object hh:mm:ss.sss
        *               with possible time zone Z or (-),(+)hh:mm
        *               Pattern: 
"(\\d\\d):(\\d\\d):(\\d\\d)(\\.(\\d)*)?(Z|(([-+])(\\d\\d)(:(\\d\\d))?))?")
  -     * @param date   uninitialized date object
        * @return normalized time representation
        * @exception SchemaDateTimeException Invalid lexical representation
        */
  
  
  

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

Reply via email to