summaryrefslogtreecommitdiffstats
path: root/libjava/java/beans/PropertyVetoException.java
diff options
context:
space:
mode:
authorwarrenl <warrenl@138bc75d-0d04-0410-961f-82ee72b054a4>2000-06-27 05:10:03 +0000
committerwarrenl <warrenl@138bc75d-0d04-0410-961f-82ee72b054a4>2000-06-27 05:10:03 +0000
commitb9234e6c0d180714f7fd8095bb1a327f38c93182 (patch)
tree489d75420cadf0ca7a7d52253e3912d484dfc0a3 /libjava/java/beans/PropertyVetoException.java
parent9744ddf104e832fc3a6044301c0597e1ebd1f5ff (diff)
downloadppe42-gcc-b9234e6c0d180714f7fd8095bb1a327f38c93182.tar.gz
ppe42-gcc-b9234e6c0d180714f7fd8095bb1a327f38c93182.zip
* 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 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34726 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans/PropertyVetoException.java')
-rw-r--r--libjava/java/beans/PropertyVetoException.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/beans/PropertyVetoException.java b/libjava/java/beans/PropertyVetoException.java
index 51a5642c218..989b9e0281d 100644
--- a/libjava/java/beans/PropertyVetoException.java
+++ b/libjava/java/beans/PropertyVetoException.java
@@ -1,5 +1,5 @@
/* java.beans.PropertyVetoException
- Copyright (C) 1998 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2000 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -37,7 +37,7 @@ package java.beans;
**/
public class PropertyVetoException extends Exception {
- PropertyChangeEvent changeEvent;
+ PropertyChangeEvent evt;
/** Instantiate this exception with the given message and property change.
** @param msg the reason for the veto.
@@ -45,11 +45,11 @@ public class PropertyVetoException extends Exception {
**/
public PropertyVetoException(String msg, PropertyChangeEvent changeEvent) {
super(msg);
- this.changeEvent = changeEvent;
+ evt = changeEvent;
}
/** Get the PropertyChange event that was vetoed. **/
public PropertyChangeEvent getPropertyChangeEvent() {
- return changeEvent;
+ return evt;
}
}
OpenPOWER on IntegriCloud