mrglavas 2005/04/12 16:36:52 Modified: java/src/org/apache/xerces/xs/datatypes XSDateTime.java Log: Eliminating some control characters that found their way into this file. Revision Changes Path 1.10 +7 -7 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.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- XSDateTime.java 10 Mar 2005 16:19:47 -0000 1.9 +++ XSDateTime.java 12 Apr 2005 23:36:52 -0000 1.10 @@ -28,37 +28,37 @@ public interface XSDateTime { /** - * @return years – can be negative for date-time related types; + * @return years - can be negative for date-time related types; * returns 0 for duration types */ public int getYears(); /** - * @return months – can be negative only for duration types; + * @return months - can be negative only for duration types; * For duration types, it returns years*12 + months */ public int getMonths(); /** - * @return days – cannot be negative; + * @return days - cannot be negative; * returns 0 for duration types */ public int getDays(); /** - * @return hours – cannot be negative; + * @return hours - cannot be negative; * returns 0 for duration types */ public int getHours(); /** - * @return minutes – cannot be negative; + * @return minutes - cannot be negative; * returns 0 for duration types */ public int getMinutes(); /** - * @return seconds – can be negative only for durations; + * @return seconds - can be negative only for durations; * For duration types, it returns days*24*3600 + hours*3600 * + minutes*60 + seconds */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]