Calendar.java (toString): New method.

* java/util/Calendar.java (toString): New method.
	* java/util/SimpleTimeZone.java (clone): New method.
	(toString): New method.
	* java/util/TimeZone.java (clone): New method.
	* java/text/SimpleDateFormat.java (clone): New method.
	* java/text/NumberFormat.java (clone): New method.
	(equals): New method.
	* java/text/Format.java (clone): New method.
	* java/text/DateFormatSymbols.java (DateFormatSymbols): New
	constructor.
	(clone): New method.
	* java/text/DateFormat.java (clone): New method.
	* java/text/Collator.java (clone): New method.

From-SVN: r31775
This commit is contained in:
Tom Tromey 2000-02-03 18:26:51 +00:00 committed by Tom Tromey
parent 7d3151e1c9
commit 14447d9674
10 changed files with 132 additions and 10 deletions

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1998, 1999 Red Hat, Inc.
/* Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
This file is part of libgcj.
@ -121,6 +121,19 @@ public class DateFormatSymbols extends Object
this (Locale.getDefault());
}
// Copy constructor.
private DateFormatSymbols (DateFormatSymbols old)
{
ampms = old.ampms;
eras = old.eras;
localPatternChars = old.localPatternChars;
months = old.months;
shortMonths = old.shortMonths;
shortWeekdays = old.shortWeekdays;
weekdays = old.weekdays;
zoneStrings = old.zoneStrings;
}
public String[] getAmPmStrings()
{
return ampms;
@ -251,6 +264,11 @@ public class DateFormatSymbols extends Object
&& equals(zoneStrings, other.zoneStrings));
}
public Object clone ()
{
return new DateFormatSymbols (this);
}
public int hashCode ()
{
return (hashCode(ampms)