Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/beans/VetoableChangeSupport.java
/* * @(#)VetoableChangeSupport.java 1.15 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.beans; import java.io.Serializable; import java.io.ObjectOutputStream; import java.io.ObjectInputStream; import java.io.IOException; /** * This is a utility class that can be used by beans that support constrained * properties. You can use an instance of this class as a member field * of your bean and delegate various work to it. */ public class VetoableChangeSupport implements java.io.Serializable { /** * @sourceBean The bean to be given as the source for any events. */ public VetoableChangeSupport(Object sourceBean) { source = sourceBean; } /** * Add a VetoableListener to the listener list. * * @param listener The VetoableChangeListener to be added */ public synchronized void addVetoableChangeListener( VetoableChangeListener listener) { if (listeners == null) { listeners = new java.util.Vector(); } listeners.addElement(listener); } /** * Remove a VetoableChangeListener from the listener list. * * @param listener The VetoableChangeListener to be removed */ public synchronized void removeVetoableChangeListener( VetoableChangeListener listener) { if (listeners == null) { return; } listeners.removeElement(listener); } /** * Report a vetoable property update to any registered listeners. If * anyone vetos the change, then fire a new event reverting everyone to * the old value and then rethrow the PropertyVetoException. * <p> * No event is fired if old and new are equal and non-null. * * @param propertyName The programmatic name of the property * that was changed. * @param oldValue The old value of the property. * @param newValue The new value of the property. * @exception PropertyVetoException if the recipient wishes the property * change to be rolled back. */ public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws PropertyVetoException { if (oldValue != null && oldValue.equals(newValue)) { return; } java.util.Vector targets; synchronized (this) { if (listeners == null) { return; } targets = (java.util.Vector) listeners.clone(); } PropertyChangeEvent evt = new PropertyChangeEvent(source, propertyName, oldValue, newValue); try { for (int i = 0; i < targets.size(); i++) { VetoableChangeListener target = (VetoableChangeListener)targets.elementAt(i); target.vetoableChange(evt); } } catch (PropertyVetoException veto) { // Create an event to revert everyone to the old value. evt = new PropertyChangeEvent(source, propertyName, newValue, oldValue); for (int i = 0; i < targets.size(); i++) { try { VetoableChangeListener target = (VetoableChangeListener)targets.elementAt(i); target.vetoableChange(evt); } catch (PropertyVetoException ex) { // We just ignore exceptions that occur during reversions. } } // And now rethrow the PropertyVetoException. throw veto; } } private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); java.util.Vector v = null; synchronized (this) { if (listeners != null) { v = (java.util.Vector) listeners.clone(); } } if (v != null) { for(int i = 0; i < listeners.size(); i++) { VetoableChangeListener l = (VetoableChangeListener)v.elementAt(i); if (l instanceof Serializable) { s.writeObject(l); } } } s.writeObject(null); } private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException { s.defaultReadObject(); Object listenerOrNull; while(null != (listenerOrNull = s.readObject())) { addVetoableChangeListener((VetoableChangeListener)listenerOrNull); } } transient private java.util.Vector listeners; private Object source; private int vetoableChangeSupportSerializedDataVersion = 1; }
⏎ java/beans/VetoableChangeSupport.java
Or download all of them as a single archive file:
File name: jdk-1.1.8-src.zip File size: 1574187 bytes Release date: 2018-11-16 Download
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 175229👍, 0💬
Popular Posts:
Apache Log4j IOStreams is a Log4j API extension that provides numerous classes from java.io that can...
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module. JDK 11 Naming module compiled cla...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
How to download and install mysql-connector-j-8.0.31 .zip?Connector/J Java library is a JDBC Driver ...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...