Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6372706

XMLGregorianCalendarImpl uses methods newly added in Tiger

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P2 P2
    • 1.3.1
    • 1.3.0
    • xml
    • generic
    • generic

      XMLGregorianCalendarImpl class uses some methods that are only availalble in Tiger, and thus fail to load on earlier JVMs.
      JAXP 1.3 is supposed to be able to run with JDK 1.3, so this is a spec violation.

      For one example, see the following method where it uses "new BigDecimal(long)":

          public void setMillisecond(int millisecond) {
      if (millisecond == DatatypeConstants.FIELD_UNDEFINED) {
      fractionalSecond = null;
      } else {
      checkFieldValueConstraint(MILLISECOND, millisecond);
      fractionalSecond = new BigDecimal((long) millisecond).movePointLeft(3);
      }
          }

      A bigger issue is the fact that this went unnoticed. JAXP should be built with JDK 1.3 (so that javac can report compile-time errors on cases like this), and it should be tested with JDK 1.3 also.

            jsuttorsunw Jeff Suttor (Inactive)
            kkawagucsunw Kohsuke Kawaguchi (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: