Java Doc for DelayedPropertyChangeHandler.java in  » Swing-Library » jgoodies-data-binding » com » jgoodies » binding » beans » 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 » Swing Library » jgoodies data binding » com.jgoodies.binding.beans 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.jgoodies.binding.beans.DelayedPropertyChangeHandler

DelayedPropertyChangeHandler
abstract public class DelayedPropertyChangeHandler implements PropertyChangeListener(Code)
A PropertyChangeListener that is intended to handle property changes after a specified delay. Useful to defer changes until a stable state is reached. For example if you look up a persistent object for a selection in a list. You don't want to find and transport objects that the user selects temporarily; you want to get only a stable selection. Or if you want to validate on every key typed, you may delay the validation until no key has been typed for a given time.

If this handler is notified about a property change it stores the PropertyChangeEvent it has received in #propertyChange, and starts a Swing Timer that will call #delayedPropertyChange after a delay. In coalescing mode a previously started timer - if any - will be stopped before. In other words, the timer is restarted.

TODO: Write about the recommended delay time - above the double-click time and somewhere below a second, e.g. 100ms to 200ms.

TODO: Summarize the differences between the DelayedReadValueModel, the DelayedWriteValueModel, and this DelayedPropertyChangeHandler.
author:
   Karsten Lentzsch
version:
   $Revision: 1.10 $
See Also:   com.jgoodies.binding.value.DelayedReadValueModel
See Also:   com.jgoodies.binding.extras.DelayedWriteValueModel
See Also:   javax.swing.Timer
since:
   1.1



Field Summary
final public static  intDEFAULT_DELAY
     The delay in milliseconds used as default in the no-arg constructor.

Constructor Summary
public  DelayedPropertyChangeHandler()
     Constructs a DelayedPropertyChangeHandler with a default delay.
public  DelayedPropertyChangeHandler(int delay)
     Constructs a DelayedPropertyChangeHandler with the specified Timer delay and the coalesce disabled.
public  DelayedPropertyChangeHandler(int delay, boolean coalesce)
     Constructs a DelayedPropertyChangeHandler with the specified Timer delay and the given coalesce mode.

Method Summary
abstract public  voiddelayedPropertyChange(PropertyChangeEvent evt)
     This method gets called after this handler's delay if a bound property has changed.
public  intgetDelay()
     Returns the delay, in milliseconds, that is used to defer value change notifications.
public  booleanisCoalesce()
     Returns if this model coalesces all pending changes or not.
final public  voidpropertyChange(PropertyChangeEvent evt)
     This handler has been notified about a change in a bound property. Stores the given event, then starts a timer that'll call #delayedPropertyChange after this handler's delay. If coalescing is enabled, a previously started timer - if any - if stopped before.
public  voidsetCoalesce(boolean b)
     Sets if this model shall coalesce all pending changes or not.
public  voidsetDelay(int delay)
     Sets the delay, in milliseconds, that is used to defer value change notifications.
final public  voidstop()
     Stops a running timer - if any.

Field Detail
DEFAULT_DELAY
final public static int DEFAULT_DELAY(Code)
The delay in milliseconds used as default in the no-arg constructor.




Constructor Detail
DelayedPropertyChangeHandler
public DelayedPropertyChangeHandler()(Code)
Constructs a DelayedPropertyChangeHandler with a default delay.



DelayedPropertyChangeHandler
public DelayedPropertyChangeHandler(int delay)(Code)
Constructs a DelayedPropertyChangeHandler with the specified Timer delay and the coalesce disabled.
Parameters:
  delay - the milliseconds to wait before the delayed property changewill be performed
throws:
  IllegalArgumentException - if the delay is negative



DelayedPropertyChangeHandler
public DelayedPropertyChangeHandler(int delay, boolean coalesce)(Code)
Constructs a DelayedPropertyChangeHandler with the specified Timer delay and the given coalesce mode.
Parameters:
  delay - the milliseconds to wait before the delayed property changewill be performed
Parameters:
  coalesce - true to coalesce all pending changes,false to fire changes with the delay when an updatehas been received
throws:
  IllegalArgumentException - if the delay is negative
See Also:   DelayedPropertyChangeHandler.setCoalesce(boolean)




Method Detail
delayedPropertyChange
abstract public void delayedPropertyChange(PropertyChangeEvent evt)(Code)
This method gets called after this handler's delay if a bound property has changed. The event is the pending event as stored in #propertyChange.

This method is invoked only if this handler hasn't received subsequent property changes. In other words, it is called only if the observed bound property is stable during the delay time.
Parameters:
  evt - the PropertyChangeEvent describing the event sourceand the property that has changed




getDelay
public int getDelay()(Code)
Returns the delay, in milliseconds, that is used to defer value change notifications. the delay, in milliseconds, that is used to defervalue change notifications
See Also:   DelayedPropertyChangeHandler.setDelay
since:
   1.5



isCoalesce
public boolean isCoalesce()(Code)
Returns if this model coalesces all pending changes or not. true if all pending changes will be coalesced,false if pending changes are fired with a delaywhen an update has been received.
See Also:   DelayedPropertyChangeHandler.setCoalesce(boolean)



propertyChange
final public void propertyChange(PropertyChangeEvent evt)(Code)
This handler has been notified about a change in a bound property. Stores the given event, then starts a timer that'll call #delayedPropertyChange after this handler's delay. If coalescing is enabled, a previously started timer - if any - if stopped before. In other words, the timer is restarted.
Parameters:
  evt - the PropertyChangeEvent describing the event sourceand the property that has changed



setCoalesce
public void setCoalesce(boolean b)(Code)
Sets if this model shall coalesce all pending changes or not. In this case, a change event will be fired first, if no updates have been received for this model's delay. If coalesce is false, a change event will be fired with this model's delay when an update has been received.

The default value is false.

Note that this value is not the #coalesce value of this model's internal Swing timer.
Parameters:
  b - true to coalesce,false to fire separate changes




setDelay
public void setDelay(int delay)(Code)
Sets the delay, in milliseconds, that is used to defer value change notifications.
Parameters:
  delay - the delay, in milliseconds, that is used to defervalue change notifications
See Also:   DelayedPropertyChangeHandler.getDelay
since:
   1.5



stop
final public void stop()(Code)
Stops a running timer - if any. The last pending event won't be delivered to #delayedPropertyChange.
since:
   1.2



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.