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


com.jgoodies.binding.value.AbstractValueModel
   com.jgoodies.binding.value.ValueHolder

ValueHolder
final public class ValueHolder extends AbstractValueModel (Code)
A simple com.jgoodies.binding.value.ValueModel implementation that holds a generic value. If the value changes, a PropertyChangeEvent is fired that can be observed using a PropertyChangeListener.

Differences in the old and new value can be checked either using == or #equals. The unbound property identityCheckEnabled determines which mechanism is used to check for changes in #setValue(Object). This check can be overridden for individual changes by the boolean parameter in #setValue(Object, boolean).

Constraints: The value is of type Object.
author:
   Karsten Lentzsch
version:
   $Revision: 1.5 $
See Also:   ValueModel
See Also:   java.beans.PropertyChangeEvent
See Also:   java.beans.PropertyChangeListener
See Also:   com.jgoodies.binding.beans.ExtendedPropertyChangeSupport




Constructor Summary
public  ValueHolder()
     Constructs a ValueHolder with null as initial value.
public  ValueHolder(Object initialValue)
     Constructs a ValueHolder with the given initial value.
public  ValueHolder(Object initialValue, boolean checkIdentity)
     Constructs a ValueHolder with the given initial value.
public  ValueHolder(boolean initialValue)
     Constructs a ValueHolder with the specified initial boolean value that is converted to a Boolean object.
public  ValueHolder(double initialValue)
     Constructs a ValueHolder with the specified initial double value that is converted to a Double object.
public  ValueHolder(float initialValue)
     Constructs a ValueHolder with the specified initial float value that is converted to a Float object.
public  ValueHolder(int initialValue)
     Constructs a ValueHolder with the specified initial int value that is converted to an Integer object.
public  ValueHolder(long initialValue)
     Constructs a ValueHolder with the specified initial long value that is converted to a Long object.

Method Summary
public  ObjectgetValue()
     Returns the observed value.
public  booleanisIdentityCheckEnabled()
     Answers whether this ValueHolder fires value change events if and only if the old and new value are not the same.
public  voidsetIdentityCheckEnabled(boolean checkIdentity)
     Sets the comparison that is used to check differences between the old and new value when firing value change events. This is the default setting that is used when changing the value via #setValue(Object).
public  voidsetValue(Object newValue)
     Sets a new value.
public  voidsetValue(Object newValue, boolean checkIdentity)
     Sets a new value.


Constructor Detail
ValueHolder
public ValueHolder()(Code)
Constructs a ValueHolder with null as initial value.



ValueHolder
public ValueHolder(Object initialValue)(Code)
Constructs a ValueHolder with the given initial value. By default the old and new value are compared using #equals when firing value change events.
Parameters:
  initialValue - the initial value



ValueHolder
public ValueHolder(Object initialValue, boolean checkIdentity)(Code)
Constructs a ValueHolder with the given initial value.
Parameters:
  initialValue - the initial value
Parameters:
  checkIdentity - true to compare the old and new value using==, false to use #equals



ValueHolder
public ValueHolder(boolean initialValue)(Code)
Constructs a ValueHolder with the specified initial boolean value that is converted to a Boolean object.
Parameters:
  initialValue - the initial boolean value



ValueHolder
public ValueHolder(double initialValue)(Code)
Constructs a ValueHolder with the specified initial double value that is converted to a Double object.
Parameters:
  initialValue - the initial double value



ValueHolder
public ValueHolder(float initialValue)(Code)
Constructs a ValueHolder with the specified initial float value that is converted to a Float object.
Parameters:
  initialValue - the initial float value



ValueHolder
public ValueHolder(int initialValue)(Code)
Constructs a ValueHolder with the specified initial int value that is converted to an Integer object.
Parameters:
  initialValue - the initial int value



ValueHolder
public ValueHolder(long initialValue)(Code)
Constructs a ValueHolder with the specified initial long value that is converted to a Long object.
Parameters:
  initialValue - the initial long value




Method Detail
getValue
public Object getValue()(Code)
Returns the observed value. the observed value



isIdentityCheckEnabled
public boolean isIdentityCheckEnabled()(Code)
Answers whether this ValueHolder fires value change events if and only if the old and new value are not the same. true if the old and new value are comparedusing ==, false if the valuesare compared using #equals



setIdentityCheckEnabled
public void setIdentityCheckEnabled(boolean checkIdentity)(Code)
Sets the comparison that is used to check differences between the old and new value when firing value change events. This is the default setting that is used when changing the value via #setValue(Object). You can override this default setting by changing a value via #setValue(Object, boolean).
Parameters:
  checkIdentity - true to compare the old and new value using==, false to use #equals



setValue
public void setValue(Object newValue)(Code)
Sets a new value. Fires a value change event if the old and new value differ. The difference is tested with == if isIdentityCheckEnabled answers true. The values are compared with #equals if the identity check is disabled.
Parameters:
  newValue - the new value



setValue
public void setValue(Object newValue, boolean checkIdentity)(Code)
Sets a new value. Fires a value change event if the old and new value differ. The difference is tested with == if checkIdentity is true. The values are compared with #equals if the checkIdentiy parameter is set to false.

Unlike general bean property setters, this method does not fire an event if the old and new value are null.
Parameters:
  newValue - the new value
Parameters:
  checkIdentity - true to compare the old and new value using==, false to use #equals




Fields inherited from com.jgoodies.binding.value.AbstractValueModel
final public static String PROPERTYNAME_VALUE(Code)(Java Doc)

Methods inherited from com.jgoodies.binding.value.AbstractValueModel
final public void addValueChangeListener(PropertyChangeListener l)(Code)(Java Doc)
final public boolean booleanValue()(Code)(Java Doc)
final public double doubleValue()(Code)(Java Doc)
final public void fireValueChange(Object oldValue, Object newValue)(Code)(Java Doc)
final public void fireValueChange(Object oldValue, Object newValue, boolean checkIdentity)(Code)(Java Doc)
final public void fireValueChange(boolean oldValue, boolean newValue)(Code)(Java Doc)
final public void fireValueChange(int oldValue, int newValue)(Code)(Java Doc)
final public void fireValueChange(long oldValue, long newValue)(Code)(Java Doc)
final public void fireValueChange(double oldValue, double newValue)(Code)(Java Doc)
final public void fireValueChange(float oldValue, float newValue)(Code)(Java Doc)
final public float floatValue()(Code)(Java Doc)
public String getString()(Code)(Java Doc)
final public int intValue()(Code)(Java Doc)
final public long longValue()(Code)(Java Doc)
final public void removeValueChangeListener(PropertyChangeListener l)(Code)(Java Doc)
final public void setValue(boolean b)(Code)(Java Doc)
final public void setValue(double d)(Code)(Java Doc)
final public void setValue(float f)(Code)(Java Doc)
final public void setValue(int i)(Code)(Java Doc)
final public void setValue(long l)(Code)(Java Doc)
public String toString()(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.