org.eclipse.jface.preference

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 » IDE Eclipse » jface » org.eclipse.jface.preference 
org.eclipse.jface.preference
Package-level Javadoc Provides a framework for preferences.

Package Specification

A preference manager (class PreferenceManager) maintains a tree of preference nodes. Preferences are presented to the end user in a preference dialog consisting of preference pages. A preference page consists of multiple preference fields, which can be displayed and modified though field editors. The framework contains an abstract base class for preference dialogs (PreferenceDialog), and an abstract preference page class (FieldEditorPreferencePage) for hosting these field editors.

The individual preference values are maintained in a preference store (IPreferenceStore). Each preference has a current value and a default value use to (re-)initialize it. The framework provides a concrete preference store implementation (PreferenceStore) based on an internal java.util.Properties object, with support for persisting the non-default preference values to files or streams.

A field editor presents the value of a single preference to the end user. The value is loaded from the preference store; if modified by the end user, the value is validated and eventually stored back to the preference store.

This package contains ready-to-use field editors for various types of preferences:

  • BooleanFieldEditor - booleans
  • IntegerFieldEditor - integers
  • StringFieldEditor - text strings
  • RadioGroupFieldEditor - enumerations
  • ColorFieldEditor - RGB colors
  • FontFieldEditor - fonts
  • DirectoryFieldEditor - directories
  • FileFieldEditor - files
  • PathEditor - paths
All field editors are subclasses of the abstract base class FieldEditor; the framework allows new kinds of field editors to be defined by subclassing this class or one of its subclasses.

Note: None of the classes in this package maintain global state.
 

Java Source File NameTypeComment
BooleanFieldEditor.javaClass A field editor for a boolean type preference.
BooleanPropertyAction.javaClass The BooleanPropertyAction is an action that set the values of a boolean property in the preference store.
ColorFieldEditor.javaClass A field editor for a color type preference.
ColorSelector.javaClass The ColorSelector is a wrapper for a button that displays a selected Color and allows the user to change the selection.
ComboFieldEditor.javaClass A field editor for a combo box that allows the drop-down selection of one of a list of items.
DirectoryFieldEditor.javaClass A field editor for a directory path type preference.
FieldEditor.javaClass Abstract base class for all field editors.

A field editor presents the value of a preference to the end user.

FieldEditorPreferencePage.javaClass A special abstract preference page to host field editors.
FileFieldEditor.javaClass A field editor for a file path type preference.
FontFieldEditor.javaClass A field editor for a font type preference.
IntegerFieldEditor.javaClass A field editor for an integer type preference.
IPersistentPreferenceStore.javaInterface IPersistentPreferenceStore is a preference store that can be saved.
IPreferenceNode.javaInterface Interface to a node in a preference dialog.
IPreferencePage.javaInterface An interface for a preference page.
IPreferencePageContainer.javaInterface An interface used by a preference page to talk to its dialog.
IPreferenceStore.javaInterface The IPreferenceStore interface represents a table mapping named preferences to values.
JFacePreferences.javaClass JFacePreferences is a class used to administer the preferences used by JFace objects.
ListEditor.javaClass An abstract field editor that manages a list of input values.
PathEditor.javaClass A field editor to edit directory paths.
PreferenceContentProvider.javaClass Provides a tree model for PreferenceManager content.
PreferenceConverter.javaClass A utility class for dealing with preferences whose values are common SWT objects (color, points, rectangles, and font data).
PreferenceDialog.javaClass A preference dialog is a hierarchical presentation of preference pages.
PreferenceLabelProvider.javaClass Provides labels for IPreferenceNode objects.
PreferenceManager.javaClass A preference manager maintains a hierarchy of preference nodes and associated preference pages.
PreferenceNode.javaClass A concrete implementation of a node in a preference dialog tree.
PreferencePage.javaClass Abstract base implementation for all preference page implementations.
PreferenceStore.javaClass A concrete preference store implementation based on an internal java.util.Properties object, with support for persisting the non-default preference values to files or streams.
RadioGroupFieldEditor.javaClass A field editor for an enumeration type preference.
ScaleFieldEditor.javaClass A field editor for an integer type preference.
StringButtonFieldEditor.javaClass An abstract field editor for a string type preference that presents a string input field with a change button to its right to edit the input field's content.
StringFieldEditor.javaClass A field editor for a string type preference.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.