You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2005/05/15 22:37:23 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/xs/datatypes XSDecimal.java XSDouble.java XSDateTime.java ByteList.java ObjectList.java XSFloat.java

mrglavas    2005/05/15 13:37:23

  Modified:    java/src/org/apache/xerces/xs/datatypes XSDecimal.java
                        XSDouble.java XSDateTime.java ByteList.java
                        ObjectList.java XSFloat.java
  Log:
  Remove experimental warning from datatype interfaces. They're final now.
  
  Revision  Changes    Path
  1.3       +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDecimal.java
  
  Index: XSDecimal.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDecimal.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSDecimal.java	2 Mar 2005 21:16:00 -0000	1.2
  +++ XSDecimal.java	15 May 2005 20:37:23 -0000	1.3
  @@ -19,10 +19,7 @@
   import java.math.BigInteger;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
  - * <p>Interface to expose the value of '' and related datatypes.</p>
  + * <p>Interface to expose the value of 'decimal' and related datatypes.</p>
    * 
    * @author Naela Nissar, IBM
    * 
  
  
  
  1.7       +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDouble.java
  
  Index: XSDouble.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDouble.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSDouble.java	11 Feb 2005 21:49:28 -0000	1.6
  +++ XSDouble.java	15 May 2005 20:37:23 -0000	1.7
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004, 2005 The Apache Software Foundation.
  + * Copyright 2004,2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -16,9 +16,6 @@
   package org.apache.xerces.xs.datatypes;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
    * <p>Interface to expose the value of the 'double' datatype.</p>
    * 
    * @author Ankit Pasricha, IBM
  
  
  
  1.12      +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDateTime.java
  
  Index: XSDateTime.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSDateTime.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XSDateTime.java	6 May 2005 15:31:15 -0000	1.11
  +++ XSDateTime.java	15 May 2005 20:37:23 -0000	1.12
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004, 2005 The Apache Software Foundation.
  + * Copyright 2004,2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -19,9 +19,6 @@
   import javax.xml.datatype.XMLGregorianCalendar;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
    * <p>Interface to expose the values for all date-time related types. The following 
    * table shows the methods defined for various XML Schema 1.0 built-in types. 'X' 
    * marks whether a particular method is defined for a particular type. Accessing undefined
  
  
  
  1.7       +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/ByteList.java
  
  Index: ByteList.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/ByteList.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ByteList.java	22 Feb 2005 19:32:30 -0000	1.6
  +++ ByteList.java	15 May 2005 20:37:23 -0000	1.7
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004, 2005 The Apache Software Foundation.
  + * Copyright 2004,2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -18,9 +18,6 @@
   import org.apache.xerces.xs.XSException;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
    * <p>The <code>ByteList</code> is an immutable ordered collection of 
    * <code>byte</code>.</p>
    * 
  
  
  
  1.7       +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/ObjectList.java
  
  Index: ObjectList.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/ObjectList.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ObjectList.java	22 Feb 2005 19:32:30 -0000	1.6
  +++ ObjectList.java	15 May 2005 20:37:23 -0000	1.7
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004, 2005 The Apache Software Foundation.
  + * Copyright 2004,2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -16,9 +16,6 @@
   package org.apache.xerces.xs.datatypes;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
    * <p>The <code>ObjectList</code> is an immutable ordered collection of 
    * <code>Object</code>.</p> 
    * 
  
  
  
  1.7       +2 -5      xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSFloat.java
  
  Index: XSFloat.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xs/datatypes/XSFloat.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSFloat.java	11 Feb 2005 21:49:28 -0000	1.6
  +++ XSFloat.java	15 May 2005 20:37:23 -0000	1.7
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004, 2005 The Apache Software Foundation.
  + * Copyright 2004,2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -16,9 +16,6 @@
   package org.apache.xerces.xs.datatypes;
   
   /**
  - * <p><b>EXPERIMENTAL: This interface should not be considered stable.
  - * It is likely it may be altered or replaced in the future.</b></p>
  - * 
    * <p>Interface to expose value of the float datatype.</p>
    * 
    * @author Ankit Pasricha, IBM
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org