Java Doc for AbstractVetoableValueModel.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.AbstractVetoableValueModel

All known Subclasses:   com.jgoodies.binding.tests.value.RejectingValueModel,
AbstractVetoableValueModel
abstract public class AbstractVetoableValueModel extends AbstractValueModel (Code)
A ValueModel that allows to accept or reject proposed value changes. Useful to request information from the user or to perform operations before a value is changed.

Wraps a given subject ValueModel and always returns the subject value as this model's value. Observes subject value changes and forwards them to listeners of this model. If a value is set to this model, the abstract method #proposedChange is invoked. In this method implementors define how to accept or reject value changes.

Implementors may veto against a proposed change based on the application state or by asking the user, and may also perform additional operations during the check, for example to save editor contents. Here's an example:

 public class CheckPendingEditValueModel extends AbstractVetoableValueModel {
 public CheckPendingEditValueModel(ValueModel subject) {
 super(subject);
 }
 public boolean proposedChange(Object oldValue, Object proposedNewValue) {
 if (equals(oldValue, proposedNewValue))
 return true;
 int option = JOptionPane.showConfirmDialog(
 Application.getDefaultParentFrame(),
 "Do you want to save the editor contents.");
 if (option == JOptionPane.YES_OPTION)
 model.save();
 return option != JOptionPane.CANCEL_OPTION;
 }
 }
 

author:
   Karsten Lentzsch
version:
   $Revision: 1.7 $
since:
   1.1



Constructor Summary
protected  AbstractVetoableValueModel(ValueModel subject)
     Constructs an AbstractVetoableValueModel for the given ValueModel.

Method Summary
final public  ObjectgetValue()
     Returns this model's current subject value.
abstract public  booleanproposedChange(Object oldValue, Object proposedNewValue)
     Checks and answers whether the proposed value change shall be accepted or rejected.
final public  voidsetValue(Object newValue)
     Sets the given value as new subject value if and only if 1) the new value differs from the old value and 2) the proposed change is accepted as checked by proposedChange(oldValue, newValue).


Constructor Detail
AbstractVetoableValueModel
protected AbstractVetoableValueModel(ValueModel subject)(Code)
Constructs an AbstractVetoableValueModel for the given ValueModel.
Parameters:
  subject - the underlying (or wrapped) ValueModel
throws:
  NullPointerException - if the subject is null




Method Detail
getValue
final public Object getValue()(Code)
Returns this model's current subject value. this model's current subject value.



proposedChange
abstract public boolean proposedChange(Object oldValue, Object proposedNewValue)(Code)
Checks and answers whether the proposed value change shall be accepted or rejected. Implementors may perform additional operations, for example to save a pending editor content.
Parameters:
  oldValue - the value before the change
Parameters:
  proposedNewValue - the new value if the change is accepted true to accept the proposed value, false to veto against it.



setValue
final public void setValue(Object newValue)(Code)
Sets the given value as new subject value if and only if 1) the new value differs from the old value and 2) the proposed change is accepted as checked by proposedChange(oldValue, newValue).
Parameters:
  newValue - the value to set



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.