diff options
| author | Warren Levy <warrenl@redhat.com> | 2000-06-29 23:44:17 +0000 |
|---|---|---|
| committer | Warren Levy <warrenl@redhat.com> | 2000-06-29 23:44:17 +0000 |
| commit | 813a0e1692b3ba728d8888ecc9c00100b0b38d62 (patch) | |
| tree | 03eb66dc2231c4b26c8d86a8939b4d2ac289c8ce /java/beans/beancontext | |
| parent | d87a15cc0076071bc4501bbeece802e1b8616585 (diff) | |
| download | classpath-813a0e1692b3ba728d8888ecc9c00100b0b38d62.tar.gz | |
* 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/ObjectOutputStream.java (writeObject): Use component type
when writing arrays.
Fixed typo.
* java/io/WriteAbortedException.java (message): Made transient.
Serialization mods per the JDK spec:
http://java.sun.com/products/jdk/1.2/docs/api/serialized-form.html
Diffstat (limited to 'java/beans/beancontext')
| -rw-r--r-- | java/beans/beancontext/BeanContextServiceRevokedEvent.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/beans/beancontext/BeanContextServiceRevokedEvent.java b/java/beans/beancontext/BeanContextServiceRevokedEvent.java index 32520bc39..f19fcdaaa 100644 --- a/java/beans/beancontext/BeanContextServiceRevokedEvent.java +++ b/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; } } |
