aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/beans/beancontext
diff options
context:
space:
mode:
authorWarren Levy <warrenl@cygnus.com>2000-06-27 05:10:03 +0000
committerWarren Levy <warrenl@gcc.gnu.org>2000-06-27 05:10:03 +0000
commit7b245d2461191bc67cb3dc22a5006e5478a5552b (patch)
tree489d75420cadf0ca7a7d52253e3912d484dfc0a3 /libjava/java/beans/beancontext
parentcf1748bfce3d254bfd8bad027ab55e25793ce2fc (diff)
downloadgcc-7b245d2461191bc67cb3dc22a5006e5478a5552b.zip
gcc-7b245d2461191bc67cb3dc22a5006e5478a5552b.tar.gz
gcc-7b245d2461191bc67cb3dc22a5006e5478a5552b.tar.bz2
PropertyChangeEvent.java (oldVal): Renamed to oldValue.
* java/beans/PropertyChangeEvent.java (oldVal): Renamed to oldValue. (newVal): Renamed to newValue. * java/beans/PropertyVetoException.java (changeEvent): Renamed to evt. * java/beans/beancontext/BeanContextServiceRevokedEvent.java (revokeNow): Renamed to invalidateRefs. * java/io/OptionalDataException.java: Updated FIXME. (eof): New placeholder field. (length); Ditto. * java/io/WriteAbortedException.java (message): Made transient. * java/lang/ClassNotFoundException.java: Updated comments for JDK 1.2. * java/lang/Throwable.java (stackTrace): Made transient. * java/net/InetAddress.java: Made Serializable. * java/security/KeyPair.java: Made Serializable. * java/security/Provider.java: Replaced with Classpath version that implements serialization and proper methods. * java/text/ChoiceFormat.java (strings): Renamed to choiceFormats. (limits): Renamed to choiceLimits. Serialization changes per: http://java.sun.com/products/jdk/1.2/docs/api/serialized-form.html From-SVN: r34726
Diffstat (limited to 'libjava/java/beans/beancontext')
-rw-r--r--libjava/java/beans/beancontext/BeanContextServiceRevokedEvent.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/beans/beancontext/BeanContextServiceRevokedEvent.java b/libjava/java/beans/beancontext/BeanContextServiceRevokedEvent.java
index 32520bc..f19fcda 100644
--- a/libjava/java/beans/beancontext/BeanContextServiceRevokedEvent.java
+++ b/libjava/java/beans/beancontext/BeanContextServiceRevokedEvent.java
@@ -1,5 +1,5 @@
/* java.beans.beancontext.BeanContextServiceRevokedEvent
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -41,7 +41,7 @@ public class BeanContextServiceRevokedEvent extends BeanContextEvent {
* available.
*/
protected Class serviceClass;
- private boolean revokeNow;
+ private boolean invalidateRefs;
/**
* Create a new service revoked event.
@@ -55,7 +55,7 @@ public class BeanContextServiceRevokedEvent extends BeanContextEvent {
public BeanContextServiceRevokedEvent(BeanContextServices services, Class serviceClass, boolean revokeNow) {
super(services);
this.serviceClass = serviceClass;
- this.revokeNow = revokeNow;
+ invalidateRefs = revokeNow;
}
/**
@@ -94,6 +94,6 @@ public class BeanContextServiceRevokedEvent extends BeanContextEvent {
* usable.
*/
public boolean isCurrentServiceInvalidNow() {
- return revokeNow;
+ return invalidateRefs;
}
}