Java Doc for VetoableChangeMulticaster.java in  » Ajax » Laszlo-4.0.10 » EDU » oswego » cs » dl » util » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » Laszlo 4.0.10 » EDU.oswego.cs.dl.util.concurrent 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   EDU.oswego.cs.dl.util.concurrent.VetoableChangeMulticaster

VetoableChangeMulticaster
public class VetoableChangeMulticaster implements Serializable(Code)
This class is interoperable with java.beans.VetoableChangeSupport, but relies on a streamlined copy-on-write scheme similar to that used in CopyOnWriteArrayList. It also adheres to clarified semantics of add, remove, and fireVetoableChange operations.

Sample usage.

 class Thing {
 protected Color myColor = Color.red; // an example property
 protected boolean changePending; // track whether in midst of change
 // vetoable listeners:
 protected VetoableChangeMulticaster vetoers =
 new VetoableChangeMulticaster(this);
 // Possibly also some ordinary listeners:
 protected PropertyChangeMulticaster listeners =
 new PropertyChangeMulticaster(this);
 // registration methods, including:
 void addVetoer(VetoableChangeListener l) {
 // Use the `ifAbsent' version to avoid duplicate notifications
 vetoers.addVetoableChangeListenerIfAbsent(l);
 }
 public synchronized Color getColor() { // accessor
 return myColor;
 }
 // Simple transactional control for vetos
 public void setColor(int newColor) throws PropertyVetoException {
 Color oldColor = prepareSetColor(newColor);
 try {
 vetoers.fireVetoableChange("color", oldColor, newColor);
 commitColor(newColor);
 listeners.firePropertyChange("color", oldColor, newColor);
 }
 catch(PropertyVetoException ex) {
 abortSetColor();
 throw ex;
 }
 }
 // Called on entry to proposed vetoable change from setColor.
 // Throws exception if there is already another change in progress.
 // Returns current color
 synchronized int prepareSetColor(Color c) throws PropertyVetoException {
 // only support one transaction at a time
 if (changePending) 
 throw new PropertyVetoException("Concurrent modification");
 // (Could alternatively wait out other transactions via
 // a wait/notify construction based on changePending.)
 // perhaps some other screenings, like:
 else if (c == null) 
 throw new PropertyVetoException("Cannot change color to Null");
 else {
 changePending = true;
 return myColor;
 }
 }
 synchronized void commitColor(Color newColor) { 
 myColor = newColor;
 changePending = false;
 }
 synchronized void abortSetColor() {
 changePending = false;
 }
 }
 

[ Introduction to this package. ]



Field Summary
protected  HashMapchildren
     HashMap for managing listeners for specific properties.
protected transient  VetoableChangeListener[]listeners
     The array of listeners.
final protected  Objectsource
     The object to be provided as the "source" for any generated events.

Constructor Summary
public  VetoableChangeMulticaster(Object sourceBean)
     Constructs a VetoableChangeMulticaster object.

Method Summary
public synchronized  voidaddVetoableChangeListener(VetoableChangeListener listener)
     Add a VetoableChangeListener to the listener list.
public  voidaddVetoableChangeListener(String propertyName, VetoableChangeListener listener)
     Add a VetoableChangeListener for a specific property.
public synchronized  voidaddVetoableChangeListenerIfAbsent(VetoableChangeListener listener)
     Add a PropertyChangeListener to the listener list if it is not already present.
public  voidaddVetoableChangeListenerIfAbsent(String propertyName, VetoableChangeListener listener)
     Add a VetoableChangeListener for a specific property, if it is not already registered.
public  voidfireVetoableChange(String propertyName, Object oldValue, Object newValue)
     Report a vetoable property update to any registered listeners.
public  voidfireVetoableChange(String propertyName, int oldValue, int newValue)
     Report a vetoable property update to any registered listeners.
public  voidfireVetoableChange(String propertyName, boolean oldValue, boolean newValue)
     Report a vetoable property update to any registered listeners.
public  voidfireVetoableChange(PropertyChangeEvent evt)
     Report a vetoable property update to any registered listeners.
protected synchronized  VetoableChangeMulticastergetChild(String propertyName)
    
public  booleanhasListeners(String propertyName)
     Check if there are any listeners for a specific property. If propertyName is null, return whether there are any listeners at all.
Parameters:
  propertyName - the property name.
protected  voidmulticast(PropertyChangeEvent evt)
     Helper method to relay evt to all listeners.
public synchronized  voidremoveVetoableChangeListener(VetoableChangeListener listener)
     Remove an occurrence of a VetoableChangeListener from the listener list.
public  voidremoveVetoableChangeListener(String propertyName, VetoableChangeListener listener)
     Remove a VetoableChangeListener for a specific property. Affects only the given property.

Field Detail
children
protected HashMap children(Code)
HashMap for managing listeners for specific properties. Maps property names to VetoableChangeMulticaster objects.



listeners
protected transient VetoableChangeListener[] listeners(Code)
The array of listeners. Copied on each update



source
final protected Object source(Code)
The object to be provided as the "source" for any generated events.




Constructor Detail
VetoableChangeMulticaster
public VetoableChangeMulticaster(Object sourceBean)(Code)
Constructs a VetoableChangeMulticaster object.
Parameters:
  sourceBean - The bean to be given as the source for any events.
exception:
  NullPointerException - if sourceBean is null




Method Detail
addVetoableChangeListener
public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)
Add a VetoableChangeListener to the listener list. The listener is registered for all properties. If the listener is added multiple times, it will receive multiple change notifications upon any fireVetoableChange.
Parameters:
  listener - The VetoableChangeListener to be added



addVetoableChangeListener
public void addVetoableChangeListener(String propertyName, VetoableChangeListener listener)(Code)
Add a VetoableChangeListener for a specific property. The listener will be invoked only when a call on fireVetoableChange names that specific property. However, if a listener is registered both for all properties and a specific property, it will receive multiple notifications upon changes to that property.
Parameters:
  propertyName - The name of the property to listen on.
Parameters:
  listener - The VetoableChangeListener to be added
exception:
  NullPointerException - If listener is null



addVetoableChangeListenerIfAbsent
public synchronized void addVetoableChangeListenerIfAbsent(VetoableChangeListener listener)(Code)
Add a PropertyChangeListener to the listener list if it is not already present. The listener is registered for all properties. The operation maintains Set semantics: If the listener is already registered, the operation has no effect.
Parameters:
  listener - The PropertyChangeListener to be added
exception:
  NullPointerException - If listener is null



addVetoableChangeListenerIfAbsent
public void addVetoableChangeListenerIfAbsent(String propertyName, VetoableChangeListener listener)(Code)
Add a VetoableChangeListener for a specific property, if it is not already registered. The listener will be invoked only when a call on fireVetoableChange names that specific property.
Parameters:
  propertyName - The name of the property to listen on.
Parameters:
  listener - The VetoableChangeListener to be added
exception:
  NullPointerException - If listener is null



fireVetoableChange
public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws PropertyVetoException(Code)
Report a vetoable property update to any registered listeners. Notifications are sent serially (although in no particular order) to the list of listeners, aborting if one throws PropertyVetoException. Upon this exception, fire a new event reverting this change to all listeners that have already been notified (ignoring any further vetos), suppress notifications to all other listeners, and then rethrow the PropertyVetoException.

No event is fired if old and new are equal non-null.
Parameters:
  propertyName - The programmatic name of the propertythat was changed.
Parameters:
  oldValue - The old value of the property.
Parameters:
  newValue - The new value of the property.
exception:
  PropertyVetoException - if a recipient wishes the propertychange to be rolled back.




fireVetoableChange
public void fireVetoableChange(String propertyName, int oldValue, int newValue) throws PropertyVetoException(Code)
Report a vetoable property update to any registered listeners. Notifications are sent serially (although in no particular order) to the list of listeners, aborting if one throws PropertyVetoException. Upon this exception, fire a new event reverting this change to all listeners that have already been notified (ignoring any further vetos), suppress notifications to all other listeners, and then rethrow the PropertyVetoException.

No event is fired if old and new are equal.

This is merely a convenience wrapper around the more general fireVetoableChange method that takes Object values.
Parameters:
  propertyName - The programmatic name of the propertythat was changed.
Parameters:
  oldValue - The old value of the property.
Parameters:
  newValue - The new value of the property.
exception:
  PropertyVetoException - if the recipient wishes the propertychange to be rolled back.




fireVetoableChange
public void fireVetoableChange(String propertyName, boolean oldValue, boolean newValue) throws PropertyVetoException(Code)
Report a vetoable property update to any registered listeners. Notifications are sent serially (although in no particular order) to the list of listeners, aborting if one throws PropertyVetoException. Upon this exception, fire a new event reverting this change to all listeners that have already been notified (ignoring any further vetos), suppress notifications to all other listeners, and then rethrow the PropertyVetoException.

No event is fired if old and new are equal.

This is merely a convenience wrapper around the more general fireVetoableChange method that takes Object values.
Parameters:
  propertyName - The programmatic name of the propertythat was changed.
Parameters:
  oldValue - The old value of the property.
Parameters:
  newValue - The new value of the property.
exception:
  PropertyVetoException - if the recipient wishes the propertychange to be rolled back.




fireVetoableChange
public void fireVetoableChange(PropertyChangeEvent evt) throws PropertyVetoException(Code)
Report a vetoable property update to any registered listeners. Notifications are sent serially (although in no particular order) to the list of listeners, aborting if one throws PropertyVetoException. Upon this exception, fire a new event reverting this change to all listeners that have already been notified (ignoring any further vetos), suppress notifications to all other listeners, and then rethrow the PropertyVetoException.

No event is fired if old and new are equal and non-null. equal and non-null.
Parameters:
  evt - The PropertyChangeEvent object.
exception:
  PropertyVetoException - if the recipient wishes the propertychange to be rolled back.




getChild
protected synchronized VetoableChangeMulticaster getChild(String propertyName)(Code)
Return the child associated with property, or null if no such



hasListeners
public boolean hasListeners(String propertyName)(Code)
Check if there are any listeners for a specific property. If propertyName is null, return whether there are any listeners at all.
Parameters:
  propertyName - the property name. true if there are one or more listeners for the given property



multicast
protected void multicast(PropertyChangeEvent evt) throws PropertyVetoException(Code)
Helper method to relay evt to all listeners. Called by all public fireVetoableChange methods.



removeVetoableChangeListener
public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)
Remove an occurrence of a VetoableChangeListener from the listener list. It removes at most one occurrence of the given listener. If the listener was added multiple times it must be removed mulitple times. This removes a VetoableChangeListener that was registered for all properties, and has no effect if registered for only one or more specified properties.
Parameters:
  listener - The VetoableChangeListener to be removed



removeVetoableChangeListener
public void removeVetoableChangeListener(String propertyName, VetoableChangeListener listener)(Code)
Remove a VetoableChangeListener for a specific property. Affects only the given property. If the listener is also registered for all properties, then it will continue to be registered for them.
Parameters:
  propertyName - The name of the property that was listened on.
Parameters:
  listener - The VetoableChangeListener to be removed



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.