summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2006-03-27 01:49:13 +0000
committerTom Tromey <tromey@redhat.com>2006-03-27 01:49:13 +0000
commit799c3d8768696f19639ce3a7dd4777fc17d242d3 (patch)
tree04f6f17ced35b0af42768c6816ab4538a9bb4b25 /NEWS
parentee3a9cfa4b912f2020a23f8c5483d6d901fc2716 (diff)
downloadclasspath-799c3d8768696f19639ce3a7dd4777fc17d242d3.tar.gz
* NEWS: Updated.
* vm/reference/java/lang/reflect/Method.java (METHOD_MODIFIERS): New constant. (getModifiersInternal): Renamed from getModifiers. (getModifiers): New method. (isBridge): Likewise. (isSynthetic): Likewise. (isVarArgs): Likewise. * vm/reference/java/lang/reflect/Field.java (FIELD_MODIFIERS): New constant. (getModifiersInternal): Renamed from getModifiers. (getModifiers): New method. (isSynthetic): Likewise. (isEnumConstant): Likewise. * vm/reference/java/lang/reflect/Constructor.java (getModifiersInternal): Renamed from getModifiers. (getModifiers): New method (CONSTRUCTOR_MODIFIERS): New constant. (isSynthetic): New method. (isVarArgs): Likewise. * java/lang/reflect/Member.java (isSynthetic): New method.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index f75d4f2a3..bfa28364d 100644
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,10 @@ Runtime interface changes:
array creation method from java.lang.reflect.Array.
* A new class, gnu.classpath.Unsafe, is provided for handling the
new low-level operations required by java.util.concurrent.
+* The reference implementations of Method, Constructor, and Field
+ now have a new native getModifiersInternal() method. The public
+ getModifiers() method in each case has been rewritten in terms of
+ this method.
New in release 0.90 (March 6, 2006)