ankitp 2005/02/11 13:49:28 Modified: java/src/org/apache/xerces/xs/datatypes XSDateTime.java XSFloat.java XSDouble.java java/src/org/apache/xerces/impl/dv/xs AbstractDateTimeDV.java Log: minor fixes Revision Changes Path 1.6 +5 -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.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- XSDateTime.java 11 Feb 2005 21:31:51 -0000 1.5 +++ XSDateTime.java 11 Feb 2005 21:49:28 -0000 1.6 @@ -58,22 +58,22 @@ public double getSeconds(); /** - * @return boolean + * @return whether a timezone is specified */ public boolean hasTimeZone(); /** - * @return int + * @return time hours */ public int getTimeZoneHours(); /** - * @return int + * @return timezone minutes */ public int getTimeZoneMinutes(); /** - * @return string + * @return original lexical value */ public String getLexicalValue(); } 1.6 +2 -2 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.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- XSFloat.java 11 Feb 2005 21:31:51 -0000 1.5 +++ XSFloat.java 11 Feb 2005 21:49:28 -0000 1.6 @@ -1,5 +1,5 @@ /* - * Copyright 2004 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. 1.6 +2 -2 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.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- XSDouble.java 11 Feb 2005 21:31:51 -0000 1.5 +++ XSDouble.java 11 Feb 2005 21:49:28 -0000 1.6 @@ -1,5 +1,5 @@ /* - * Copyright 2004 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. 1.32 +5 -5 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.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- AbstractDateTimeDV.java 11 Feb 2005 21:31:51 -0000 1.31 +++ AbstractDateTimeDV.java 11 Feb 2005 21:49:28 -0000 1.32 @@ -883,19 +883,19 @@ return utc != 0; } /* (non-Javadoc) - * @see org.apache.xerces.xs.datatypes.XSDateTime#getTimeZoneHr() + * @see org.apache.xerces.xs.datatypes.XSDateTime#getTimeZoneHours() */ public int getTimeZoneHours() { return timezoneHr; } /* (non-Javadoc) - * @see org.apache.xerces.xs.datatypes.XSDateTime#getTimeZoneMin() + * @see org.apache.xerces.xs.datatypes.XSDateTime#getTimeZoneMinutes() */ public int getTimeZoneMinutes() { return timezoneMin; } - /** - * @return Returns the originalValue. + /* (non-Javadoc) + * @see org.apache.xerces.xs.datatypes.XSDateTime#getLexicalValue() */ public String getLexicalValue() { return originalValue;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]