Commit c37cc018 by Jerry Quinn

ChangeLog

From-SVN: r81604
parent 4d980568
...@@ -926,8 +926,21 @@ public abstract class Calendar implements Serializable, Cloneable ...@@ -926,8 +926,21 @@ public abstract class Calendar implements Serializable, Cloneable
* @return the actual minimum value. * @return the actual minimum value.
* @since jdk1.2 * @since jdk1.2
*/ */
// FIXME: XXX: Not abstract in JDK 1.2. public int getActualMinimum(int field)
public abstract int getActualMinimum(int field); {
Calendar tmp = (Calendar)clone(); // To avoid restoring state
int min = tmp.getGreatestMinimum(field);
int end = tmp.getMinimum(field);
tmp.set(field, min);
for (; min > end; min--)
{
tmp.add(field, -1); // Try to get smaller
if (tmp.get(field) != min - 1)
break; // Done if not successful
}
return min;
}
/** /**
* Gets the actual maximum value that is allowed for the specified field. * Gets the actual maximum value that is allowed for the specified field.
...@@ -936,8 +949,20 @@ public abstract class Calendar implements Serializable, Cloneable ...@@ -936,8 +949,20 @@ public abstract class Calendar implements Serializable, Cloneable
* @return the actual maximum value. * @return the actual maximum value.
* @since jdk1.2 * @since jdk1.2
*/ */
// FIXME: XXX: Not abstract in JDK 1.2. public int getActualMaximum(int field)
public abstract int getActualMaximum(int field); {
Calendar tmp = (Calendar)clone(); // To avoid restoring state
int max = tmp.getLeastMaximum(field);
int end = tmp.getMaximum(field);
tmp.set(field, max);
for (; max < end; max++)
{
tmp.add(field, 1);
if (tmp.get(field) != max + 1)
break;
}
return max;
}
/** /**
* Return a clone of this object. * Return a clone of this object.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment