gcc/libjava
Mark Wielaard 933e5b284a [multiple changes]
2005-02-21  Mark Wielaard  <mark@klomp.org>

	* gnu/java/locale/LocaleInformation_en.java: Extend
	localPatternChars to "GyMdkHmsSEDFwWahKzYeugAZ".

2005-02-21  Mark Wielaard  <mark@klomp.org>

	* java/text/SimpleDateFormat.java
	(SimpleDateFormat(String, DateFormatSymbols)): Throw
	NullPointerException when formatData is null.

2005-02-21  Mark Wielaard  <mark@klomp.org>

	* java/util/SimpleTimeZone.java (getOffset): Calculate beforeEnd by
	taking dstSavings into account.

2005-02-21  Sven de Marothy <sven@physto.se>

	* java/text/SimpleDateFormat.java,
	(parse): Set correct DST_OFFSET to the correct value.

2005-02-21  Mark Wielaard  <mark@klomp.org>

	* java/util/SimpleTimeZone.java (checkRule): Throw
	IllegalArgumentException when month out of range.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/GregorianCalendar.java,
	(add): Don't set fields directly anymore. Use set()

2005-02-21  Mark Wielaard  <mark@klomp.org>

	* java/text/SimpleDateFormat.java (CompiledField.toString):
	Use StringBuffer, not StringBuilder.
	(toString): Likewise.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/Calendar.java
	(clear): Dates should clear to local time.
	* java/util/GregorianCalendar.java
	(computeTime): Fix priority problem with DAY_OF_WEEK,
	Handle non-sunday-startig weeks and minimumDaysInFirstWeek.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/Calendar.java
	(Calendar): Constructor should clear fields.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/text/SimpleDateFormat.java
	(parse): Tweak handling of 2-year dates
	* java/util/Calendar.java
	(clear): Clear fields to correct value.
	* java/util/GregorianCalendar.java
	(computeTime): Correct handling of time zones.
	Correct field minimum values.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/Calendar.java
	(set) Invalidate all fields on first call to set().

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/GregorianCalendar.java
	(computeTime): Fixed handling of time zones.

2005-02-21  Sven de Marothy  <sven@physto.se>

	* java/util/Calendar.java
	(clear): Set values to Epoch instead of zero.
	(set): Set isSet to the relevant field pattern instead of just
	the field.
	* java/util/GregorianCalendar.java
	(getBundle): Removed.
	(getDayOfYear): Removed.
	(getFirstDayOfMonth): New private method.
	(nonLeniencyCheck): New private method.
	(computeTime): Correct handling of insufficient data.

2005-02-21  Sven de Marothy <sven@physto.se>

	* java/util/Calendar.java: Invalidate ERA field on setting
	the YEAR.
	* java/util/SimpleTimeZone.java:
	(getDaysInMonth): Reimplemented.
	* java/util/GregorianCalendar.java:
	(getLinearTime): Removed.
	(isLeapYear(int,boolean)): Removed.
	(before(), after()): Removed.
	(computeTime): Reimplemented.

2005-02-21  Sven de Marothy <sven@physto.se>

	* java/util/Calendar.java: Reformatted.
	* java/util/GregorianCalendar.java: Reformatted.
	* java/util/SimpleTimeZone.java: Reformatted.

2005-02-21  Sven de Marothy <sven@physto.se>

        * java/util/GregorianCalendar.java
        (GregorianCalendar): Update fields in the constructor

2005-02-21  Noa Resare  <noa@resare.com>

        * java/util/Calendar.java (explicitDSTOffset): New instance field.
        (set(int,int)): Set and use new field.
        (set(int,int,int)): Check new field.

2005-02-21  Noa Resare  <address@hidden>

	* java/util/Calendar.java(set):
	Fix for DST related regression.

2005-02-21  Jeroen Frijters  <jeroen@frijters.net>

	* java/util/Calendar.java
	(setTimeInMillis): Added call to clear, removed computeFields call.
	* java/util/Date.java
	(Date(int,int,int,int,int,int)): Removed workaround for
	GregorianCalendar bug.
	* java/util/GregorianCalendar.java
	(GregorianCalendar): Chained all constructors to a (new)
	common constructor.
	(computeTime): Fixed support for lenient month treatment.
	(getLinearDay): Return long instead of int.
	(calculateDay): Added fields argument and changed day argument
	to long.

2005-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>

	* java/text/SimpleDateFormat.java
	Lots of documentation updates.
	(readObject(java.io.ObjectInputStream)): Wraps
	IllegalArgumentException as specified.
	(compileFormat(String)): Uses standardChars
	rather than the local pattern characters.
	Throws IllegalArgumentException rather than
	storing a -1 field.
	(toString()): Extended to include all variables
	in a better format.
	(translateLocalizedPattern(String, String, String)):
	Renamed to better define the use of this method.

2005-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>

	* java/text/DateFormat.java:
	Documented pattern character offset constants and
	added new ones.
	(Field): Added new static fields for new pattern chars.
	* java/text/SimpleDateFormat.java:
	(CompiledField): Changed name of FieldSizePair class
	to CompiledField after adding the character as an
	attribute.  Changed fields to private and added
	accessors to give encapsulation.
	(CompiledField.CompiledField(int,int,char)): Extended
	with character field.
	(CompiledField.getField()): New accessor method.
	(CompiledField.getSize()): New acceessor method.
	(CompiledField.getCharacter()): New accessor method.
	(CompiledField.toString()): Added primarily for debugging.
	(standardChars): Now uses extended 24 character sequence.
	(compileFormat(String)): Changed to use CompiledField.
	(formatWithAttribute(java.util.Date, gnu.java.text.FormatBuffer,
	java.text.FieldPosition)): Changed to use CompiledField.
	New handler for RFC 822 timezones added.

2005-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>

	* java/text/SimpleDateFormat.java:
	(parse(String, java.text.ParsePosition)):
	Changed 'E' and 'M' cases to use both
	short and long names.  Extended 'z'
	case to also handle 'Z', and deal
	with simple GMT offsets such as +0100.
	(computeOffset(String)): New private method,
	which converts a GMT offset specification,
	such as GMT-0500 to a numeric offset in
	milliseconds.
	* java/util/TimeZone.java:
	(timezones()): Added "CEST", the daylight
	savings time version of "CET", or Central
	European Time.

2005-02-21  Ito Kazumitsu  <kaz@maczuka.gcd.org>

	* java/text/SimpleDateFormat.java:
	(parse): Set the DST offset to 0 when parsing
	GMT offset timezones.

2005-02-21  Ito Kazumitsu  <kaz@maczuka.gcd.org>

	* java/text/SimpleDateFormat.java:
	(parse): Use offset to set ZONE_OFFSET
	rather than the DST_OFFSET, so that
	GMT offset timezones change the right
	one.

2005-02-21  Andrew John Hughes  <gnu_andrew@member.fsf.org>

	* java/text/SimpleDateFormat.java:
	(getDateFormatSymbols()): return a copy
	(setDateFormatSymbols(java.text.DateFormatSymbols)):
	throw exception on null input
	(clone()): implemented to clone
	internal fields

2005-02-21  Sven de Marothy <sven@physto.se>

	* java/text/SimpleDateFormat.java
	(parse): comparison should be case-insensitive, ignore null
	strings.

From-SVN: r95368
2005-02-22 00:58:36 +00:00
..
external Makefile.in: Rebuilt. 2005-02-10 18:33:54 +00:00
gcj re PR libgcj/7305 (Install path for libgcj header files) 2004-12-03 11:15:25 +00:00
gnu [multiple changes] 2005-02-22 00:58:36 +00:00
include re PR java/20056 ('verification failed: incompatible type on stack' with --indirect-dispatch) 2005-02-19 01:16:30 +00:00
java [multiple changes] 2005-02-22 00:58:36 +00:00
javax 2005-02-19 Michael Koch <konqueror@gmx.de> 2005-02-19 09:30:03 +00:00
jni gthread-jni.c (throw): Call g_snprintf instead of snprintf. 2005-02-20 04:14:24 +00:00
libltdl Makefile.in: Regenrate with Automake 1.9.3. 2004-11-24 21:01:02 +00:00
org/ietf/jgss Makefile.am: New file. 2005-02-02 00:42:32 +00:00
scripts Character.java, [...]: Reorder "final static" to "static final". 2004-11-24 13:33:01 +00:00
sysdep configure.host: Enable hash synchronization on Darwin. 2004-07-07 20:24:00 +02:00
testsuite re PR java/20056 ('verification failed: incompatible type on stack' with --indirect-dispatch) 2005-02-19 03:57:21 +00:00
.cvsignore ignore autom4te.cache 2004-08-23 23:51:56 +00:00
COPYING COPYING: Update to current ftp://ftp.gnu.org/pub/gnu/Licenses/COPYING-2.0 (fixes... 2000-12-18 09:12:19 +00:00
ChangeLog [multiple changes] 2005-02-22 00:58:36 +00:00
ChangeLog-1999 Rotated ChangeLogs 2000-02-17 22:57:30 +00:00
ChangeLog-2001 ChangeLog rotation 2002-01-22 00:20:23 +00:00
ChangeLog-2002 ChangeLog rotation 2004-01-17 08:40:41 +00:00
ChangeLog-2003 ChangeLog rotation 2004-01-17 08:40:41 +00:00
HACKING HACKING: Remove reference to special automake. 2004-08-30 20:45:10 +02:00
LIBGCJ_LICENSE Add license clarification. 2002-01-22 22:40:42 +00:00
Makefile.am Makefile.in: Rebuilt. 2005-02-21 18:19:01 +00:00
Makefile.in Makefile.in: Rebuilt. 2005-02-21 18:19:01 +00:00
NEWS NEWS: Draft of libgcj NEWS for 4.0. 2005-02-19 00:47:33 +00:00
README README: Remove obsolete info. 2004-07-29 03:13:04 +01:00
THANKS README: Remove obsolete info. 2004-07-29 03:13:04 +01:00
acinclude.m4 Makefile.am: Run aclocal with -I ../config 2004-09-23 01:14:03 +00:00
aclocal.m4 re PR libgcj/7305 (Install path for libgcj header files) 2004-12-03 11:15:25 +00:00
addr2name.awk Jumbo patch: 2000-05-19 17:55:34 +00:00
boehm.cc * Merged gcj-abi-2-dev-branch to trunk. 2004-11-25 03:47:08 +00:00
configure configure: Rebuilt. 2005-02-08 21:51:34 +00:00
configure.ac configure: Rebuilt. 2005-02-08 21:51:34 +00:00
configure.host * Merged gcj-abi-2-dev-branch to trunk. 2004-11-25 03:47:08 +00:00
darwin.cc Index: gcc/gcc/ChangeLog 2004-10-26 06:09:05 +00:00
defineclass.cc defineclass.cc (handleClassBegin): Use _Jv_RegisterInitiatingLoader. 2005-02-07 21:29:04 +00:00
exception.cc lang.c (LANG_HOOKS_GET_CALLEE_FNDECL): New. 2003-10-24 09:29:43 +00:00
gij.cc gij.cc (version): Change year for '--version' to 2005. 2005-02-18 20:52:16 +00:00
interpret.cc re PR libgcj/15719 (GIJ Interpeter: Problem with NaN / infinity comparisons) 2005-01-05 19:03:10 +00:00
jawt.c jawt.c: New file. 2005-02-14 21:08:08 +00:00
jni.cc jni.cc (nathash_add): Don't strdup the method signature. 2005-02-14 13:51:29 +00:00
libgcj-test.spec.in * libgcj.spec.in, libgcj-test.spec.in: Revert for now. 2002-03-31 18:24:59 +00:00
libgcj.pc.in 2003-07-09 Michael Koch <konqueror@gmx.de> 2003-07-09 07:11:13 +00:00
libgcj.spec.in configure.host (alpha*-*): Default to -mieee. 2003-02-13 02:51:26 +00:00
libtool-version libtool-version: Increased `current' to 6. 2004-01-19 19:01:59 +00:00
link.cc link.cc (make_vtable): Remove abstract method check. 2005-02-19 05:17:14 +00:00
mauve-libgcj * mauve-libgcj: Exclude some swing tests. 2005-01-10 22:57:53 +00:00
no-threads.cc natFinalizerThread.cc: New file. 2001-10-10 22:25:43 +00:00
nogc.cc nogc.cc: Remove warnings. 2002-01-27 22:33:35 +00:00
pkg.m4 configure.in: Use pkg-config to check for GTK 2.2 and libart 2.1. 2004-01-30 22:01:11 +00:00
posix-threads.cc prims.cc (_Jv_CreateJavaVM): Add comment about initialization order. 2005-02-16 04:16:06 +00:00
posix.cc posix.cc: added #include<stdio.h> 2003-07-08 04:49:16 +00:00
prims.cc prims.cc (_Jv_CreateJavaVM): Add comment about initialization order. 2005-02-16 04:16:06 +00:00
verify.cc re PR java/20056 ('verification failed: incompatible type on stack' with --indirect-dispatch) 2005-02-19 03:57:21 +00:00
win32-threads.cc re PR libgcj/14751 ([win32] thread creation leaks system handle resources) 2004-09-11 19:13:51 +00:00
win32.cc configure.in [...] (SYSTEMSPEC): Remove -lwsock32. 2004-08-01 04:29:31 +00:00

README

This is libgcj: the runtime library for gcj, the GNU Compiler for Java. 
libgcj provides a partial implementation of the Java Class Libraries.

libgcj is free software.  See the file LIBGCJ_LICENSE for copying permission.


DOCUMENTATION
=============

All documentation, including detailed installation and usage instructions,
can be found on the gcj web pages at this URL:

		http://gcc.gnu.org/java/

BUGS
====

Please submit bug reports via this URL:

	http://gcc.gnu.org/bugzilla