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


com.jgoodies.binding.value.AbstractValueModel
   com.jgoodies.binding.adapter.PreferencesAdapter

PreferencesAdapter
final public class PreferencesAdapter extends AbstractValueModel (Code)
A ValueModel implementation that reads and writes values from/to a key of a given Preferences node under a specified key. Write changes fire value changes.

Example:

 String  prefsKey = "isShowing";
 Boolean defaultValue = Boolean.TRUE;
 Preferences prefs = Workbench.userPreferences();
 ValueModel model = new PreferencesAdapter(prefs, prefsKey, defaultValue);
 JCheckBox showingBox = new JCheckBox("Show tips");
 showingBox.setModel(new ToggleButtonAdapter(model));
 

author:
   Karsten Lentzsch
version:
   $Revision: 1.6 $
See Also:   java.util.prefs.Preferences



Constructor Summary
public  PreferencesAdapter(Preferences prefs, String key, Object defaultValue)
     Constructs a PreferencesAdapter on the given Preferences using the specified key and default value, all which must be non-null.

Method Summary
public  booleangetBoolean()
     Looks up, converts and returns the stored value from the preferences.
public  doublegetDouble()
     Looks up, converts and returns the stored value from the preferences.
public  floatgetFloat()
     Looks up, converts and returns the stored value from the preferences.
public  intgetInt()
     Looks up, converts and returns the stored value from the preferences.
public  longgetLong()
     Looks up, converts and returns the stored value from the preferences.
public  StringgetString()
     Looks up, converts and returns the stored value from the preferences.
public  ObjectgetValue()
     Looks up and returns the value from the preferences.
public  voidsetBoolean(boolean newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetDouble(double newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetFloat(float newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetInt(int newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetLong(long newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetString(String newValue)
     Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
public  voidsetValue(Object newValue)
     Converts the given value to a string and puts it into the preferences.


Constructor Detail
PreferencesAdapter
public PreferencesAdapter(Preferences prefs, String key, Object defaultValue)(Code)
Constructs a PreferencesAdapter on the given Preferences using the specified key and default value, all which must be non-null.
Parameters:
  prefs - the Preferences used to store and retrieve
Parameters:
  key - the key used to get and set values in the Preferences
Parameters:
  defaultValue - the default value
throws:
  NullPointerException - if the Preferences, key, or default valueis null
throws:
  IllegalArgumentException - if the default value is of a type otherthan Boolean, Double, Float, Integer, Long, or String.




Method Detail
getBoolean
public boolean getBoolean()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getDouble
public double getDouble()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getFloat
public float getFloat()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getInt
public int getInt()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getLong
public long getLong()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getString
public String getString()(Code)
Looks up, converts and returns the stored value from the preferences. Returns the default value if no value has been stored before. the stored value or the default



getValue
public Object getValue()(Code)
Looks up and returns the value from the preferences. The value is look up under this adapter's key. It will be converted before it is returned. the retrieved and converted value
throws:
  ClassCastException - if the type of the default valuecannot be read from the preferences



setBoolean
public void setBoolean(boolean newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not a Boolean



setDouble
public void setDouble(double newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not a Double



setFloat
public void setFloat(float newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not a Float



setInt
public void setInt(int newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not an Integer



setLong
public void setLong(long newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not a Long



setString
public void setString(String newValue)(Code)
Converts the given value to an Object and stores it in this adapter's Preferences under this adapter's preferences key.
Parameters:
  newValue - the value to put into the Preferences
throws:
  ClassCastException - if the default value is not a String



setValue
public void setValue(Object newValue)(Code)
Converts the given value to a string and puts it into the preferences.
Parameters:
  newValue - the object to be stored
throws:
  IllegalArgumentException - if the new value cannot be storedin the preferences due to an illegal type



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.