Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c37cc018
Commit
c37cc018
authored
May 07, 2004
by
Jerry Quinn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ChangeLog
From-SVN: r81604
parent
4d980568
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
4 deletions
+29
-4
libjava/java/util/Calendar.java
+29
-4
No files found.
libjava/java/util/Calendar.java
View file @
c37cc018
...
...
@@ -926,8 +926,21 @@ public abstract class Calendar implements Serializable, Cloneable
* @return the actual minimum value.
* @since jdk1.2
*/
// FIXME: XXX: Not abstract in JDK 1.2.
public
abstract
int
getActualMinimum
(
int
field
);
public
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.
...
...
@@ -936,8 +949,20 @@ public abstract class Calendar implements Serializable, Cloneable
* @return the actual maximum value.
* @since jdk1.2
*/
// FIXME: XXX: Not abstract in JDK 1.2.
public
abstract
int
getActualMaximum
(
int
field
);
public
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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment