jdk/src/share/classes/java/text/SimpleDateFormat.java
changeset 24865 09b1d992ca72
parent 21334 c60dfce46a77
equal deleted inserted replaced
24864:a7bf63ebda64 24865:09b1d992ca72
   439      * </ul>
   439      * </ul>
   440      * When streaming out this class, the most recent format
   440      * When streaming out this class, the most recent format
   441      * and the highest allowable <code>serialVersionOnStream</code>
   441      * and the highest allowable <code>serialVersionOnStream</code>
   442      * is written.
   442      * is written.
   443      * @serial
   443      * @serial
   444      * @since JDK1.1.4
   444      * @since 1.1.4
   445      */
   445      */
   446     private int serialVersionOnStream = currentSerialVersion;
   446     private int serialVersionOnStream = currentSerialVersion;
   447 
   447 
   448     /**
   448     /**
   449      * The pattern string of this formatter.  This is always a non-localized
   449      * The pattern string of this formatter.  This is always a non-localized
   504     /**
   504     /**
   505      * We map dates with two-digit years into the century starting at
   505      * We map dates with two-digit years into the century starting at
   506      * <code>defaultCenturyStart</code>, which may be any date.  May
   506      * <code>defaultCenturyStart</code>, which may be any date.  May
   507      * not be null.
   507      * not be null.
   508      * @serial
   508      * @serial
   509      * @since JDK1.1.4
   509      * @since 1.1.4
   510      */
   510      */
   511     private Date defaultCenturyStart;
   511     private Date defaultCenturyStart;
   512 
   512 
   513     transient private int defaultCenturyStartYear;
   513     transient private int defaultCenturyStartYear;
   514 
   514