Java Doc for ConfigurationContext.java in  » Web-Framework » aranea-mvc-1.1.1 » org » araneaframework » uilib » 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 » Web Framework » aranea mvc 1.1.1 » org.araneaframework.uilib 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.araneaframework.uilib.ConfigurationContext

All known Subclasses:   org.araneaframework.uilib.core.StandardConfiguration,  org.araneaframework.tests.mock.MockConfiguration,
ConfigurationContext
public interface ConfigurationContext extends Serializable(Code)
Configuration context for Uilib widgets. Defined constants are the keys under which some existing widgets search their configuration.
author:
   Jevgeni Kabanov (ekabanov at araneaframework dot org)


Field Summary
final public static  StringAUTO_COMPLETE_RESPONSE_BUILDER
    org.araneaframework.uilib.form.control.AutoCompleteTextControl.ResponseBuilder that configures how org.araneaframework.uilib.form.control.AutoCompleteTextControl sends back the suggested completions.
final public static  StringBACKGROUND_FORM_VALIDATION
     This java.lang.Boolean property should be set to true if application wants all forms to be validated on-the-fly.
final public static  StringCUSTOM_CONVERTER_PROVIDER
     The full class name of the implementation of org.araneaframework.uilib.form.converter.ConverterProvider interface that will override the default.
final public static  StringCUSTOM_DATE_FORMAT
     String containing the patterns for Date date validation.
final public static  StringCUSTOM_TIME_FORMAT
     String containing the patterns for Date time validation.
final public static  StringDEFAULT_DATE_OUTPUT_FORMAT
     String containing the format for Date default date output.
final public static  StringDEFAULT_LIST_ITEMS_ON_PAGE
     Long that controls the default size of the list (eg how many rows are shown on one page).
final public static  StringDEFAULT_LIST_PAGES_ON_BLOCK
     Long that controls the default of how many list pages combine into one block for quick navigation.
final public static  StringDEFAULT_TIME_OUTPUT_FORMAT
     String containing the format for Date default time output.
final public static  StringFORMELEMENT_ERROR_RENDERER
     This property should be set to the class which stores the errors produced by failed org.araneaframework.uilib.form.FormElement validations.
final public static  StringFULL_LIST_ITEMS_ON_PAGE
     Long that controls the full size of the list (eg how many rows maximum may be shown at once).
final public static  StringLIKE_CONFIGURATION
     LikeConfiguration that configures Like filter in lists.
final public static  StringLIST_FILTER_CONFIGURATOR
     FilterFormBuilderVisitor.Configurator that configures the built filter form elements.
final public static  StringLIST_PRESERVE_STARTING_ROW
     Boolean that controls whether to preserve the list starting row when switching to showing full list and back.


Method Summary
public  ObjectgetEntry(String entryName)
     Returns a configuration entry with given name.

Field Detail
AUTO_COMPLETE_RESPONSE_BUILDER
final public static String AUTO_COMPLETE_RESPONSE_BUILDER(Code)
org.araneaframework.uilib.form.control.AutoCompleteTextControl.ResponseBuilder that configures how org.araneaframework.uilib.form.control.AutoCompleteTextControl sends back the suggested completions.



BACKGROUND_FORM_VALIDATION
final public static String BACKGROUND_FORM_VALIDATION(Code)
This java.lang.Boolean property should be set to true if application wants all forms to be validated on-the-fly. Validation is done by invoking server-side org.araneaframework.core.ActionListener s that perform the validation. When this is set to false, programmer can manually enable action validation for those org.araneaframework.uilib.form.FormWidget / org.araneaframework.uilib.form.FormElement which should be validated on-the-fly. When ConfigurationContext does not include entry corresponding to this property, it defaults to false.
since:
   1.1



CUSTOM_CONVERTER_PROVIDER
final public static String CUSTOM_CONVERTER_PROVIDER(Code)
The full class name of the implementation of org.araneaframework.uilib.form.converter.ConverterProvider interface that will override the default.



CUSTOM_DATE_FORMAT
final public static String CUSTOM_DATE_FORMAT(Code)
String containing the patterns for Date date validation.



CUSTOM_TIME_FORMAT
final public static String CUSTOM_TIME_FORMAT(Code)
String containing the patterns for Date time validation.



DEFAULT_DATE_OUTPUT_FORMAT
final public static String DEFAULT_DATE_OUTPUT_FORMAT(Code)
String containing the format for Date default date output.



DEFAULT_LIST_ITEMS_ON_PAGE
final public static String DEFAULT_LIST_ITEMS_ON_PAGE(Code)
Long that controls the default size of the list (eg how many rows are shown on one page).



DEFAULT_LIST_PAGES_ON_BLOCK
final public static String DEFAULT_LIST_PAGES_ON_BLOCK(Code)
Long that controls the default of how many list pages combine into one block for quick navigation.



DEFAULT_TIME_OUTPUT_FORMAT
final public static String DEFAULT_TIME_OUTPUT_FORMAT(Code)
String containing the format for Date default time output.



FORMELEMENT_ERROR_RENDERER
final public static String FORMELEMENT_ERROR_RENDERER(Code)
This property should be set to the class which stores the errors produced by failed org.araneaframework.uilib.form.FormElement validations. When this property is not set, org.araneaframework.uilib.form.StandardFormElementValidationErrorRenderer is used.



FULL_LIST_ITEMS_ON_PAGE
final public static String FULL_LIST_ITEMS_ON_PAGE(Code)
Long that controls the full size of the list (eg how many rows maximum may be shown at once).



LIKE_CONFIGURATION
final public static String LIKE_CONFIGURATION(Code)
LikeConfiguration that configures Like filter in lists.



LIST_FILTER_CONFIGURATOR
final public static String LIST_FILTER_CONFIGURATOR(Code)
FilterFormBuilderVisitor.Configurator that configures the built filter form elements.



LIST_PRESERVE_STARTING_ROW
final public static String LIST_PRESERVE_STARTING_ROW(Code)
Boolean that controls whether to preserve the list starting row when switching to showing full list and back.





Method Detail
getEntry
public Object getEntry(String entryName)(Code)
Returns a configuration entry with given name.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.