com.uwyn.rife.site

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 » rife 1.6.1 » com.uwyn.rife.site 
com.uwyn.rife.site
Provides classes and interfaces that provide useful features during the creation of a website. These include: automated form builders, constraints, validation, paged navigation.

Related Documentation

For overviews, tutorials, examples, guides, and documentation, please see:
Java Source File NameTypeComment
AbstractTextualIdentifierGenerator.javaClass
AbstractValidationBuilder.javaClass
AbstractValidationRule.javaClass
Constrained.javaInterface This interface defines methods for bean-centric constraining of data entities.

A constraint describes additional information about a data entity.

ConstrainedBean.javaClass A ConstrainedBean object makes it possible to define all constraints for a bean instance that are not related to a single property. The constraints here are global for the entire bean and either involve several properties or are even totally unrelated to properties.

It's possible to add constraints to a ConstrainedProperty instance through regular setters, but chainable setters are also available to make it possible to easily define a series of constraints, for example:

ConstrainedBean constrained = new ConstrainedBean()
 .unique("firstName", "lastName")
 .defaultOrder("city")
 .defaultOrder("lastName")
 .defaultOrder("firstName");

A constrained bean is typically added to a Constrained bean in its constructor.

ConstrainedBeanImpl.javaClass
ConstrainedProperty.javaClass A ConstrainedProperty object makes it possible to easily define all constraints for a named property of a bean.

The property name refers to the actual name of the bean property. However, this sometimes doesn't correspond to its conceptual usage.

ConstrainedPropertyListener.javaInterface Listeners that implement this interface will be notified when changes occur to the ConstrainedProperty instances that it has been added to.
ConstrainedUtils.javaClass
CookieComparator.javaClass
FormBuilder.javaInterface This interface defines the methods for bean-centric form generation.

All the fields in a form can be generated at once by using the generateForm methods, or individual fields can be generated through the generateField method.

FormBuilderXhtml.javaClass
FormBuilderXml.javaClass
InitializedBeanImpl.javaClass
MetaData.javaClass This abstract base class can be conveniently used to added Constrained and ValidatedConstrained meta data to a POJO.

Besides implementing all the required interfaces for you, it also sets up the underlying data structures in a lazy fashion.

MetaDataBeanAware.javaInterface This interface can optionally be implemented by a class implementing the MetaDataMerged interface.
MetaDataMerged.javaInterface This interface is merely a marker interface to indicate to RIFE that it should consider this class as a MetaData class whose interfaces will be automatically merged into the sibling class that it's augmenting.

So, consider a class Foo and another class FooMetaData.

PagedNavigation.javaClass This class provides utility methods to generate navigation for paged lists.

The generation of the navigation depends on a collection of block and value IDs that should be defined in a template.

PropertyValidationRule.javaClass This abstract class extends the AbstractValidationRule class to provide common functionality that is useful for all bean property validation rules.
RegularBeanImpl.javaClass
SelectResourceBundle.javaClass A ResourceBundle implementation which facilitates the use of select boxes in forms for properties with ConstrainedProperty.inList inList constraints.
TestAbstractValidationRule.javaClass
TestConstrainedBean.javaClass
TestConstrainedProperty.javaClass
TestConstrainedUtils.javaClass
TestCookieComparator.javaClass
TestFormBuilderXhtml.javaClass
TestMetaData.javaClass
TestPagedNavigation.javaClass
TestPropertyValidationRule.javaClass
TestSelectResourceBundle.javaClass
TestSuiteSite.javaClass
TestTextualIdentifierGenerator.javaClass
TestValidation.javaClass
TestValidationBuilderXhtml.javaClass
TestValidationError.javaClass
TestValidationGroup.javaClass
TestValidationRuleEmail.javaClass
TestValidationRuleFormat.javaClass
TestValidationRuleInList.javaClass
TestValidationRuleLimitedDate.javaClass
TestValidationRuleLimitedLength.javaClass
TestValidationRuleNotEmpty.javaClass
TestValidationRuleNotEqual.javaClass
TestValidationRuleNotNull.javaClass
TestValidationRuleRange.javaClass
TestValidationRuleRegexp.javaClass
TestValidationRuleSameAs.javaClass
TestValidationRuleUrl.javaClass
TestValidityChecks.javaClass
TextualIdentifierGenerator.javaInterface
Validated.javaInterface This interface defines methods for bean-centric data validation.

Validation is bound to subjects that have distinct names.

ValidatedConstrained.javaInterface This interface extends the Validated interface and provides additional methods that are related to beans that are constrained with ConstrainedProperty constraints.
Validation.javaClass
ValidationBuilder.javaInterface
ValidationBuilderXhtml.javaClass
ValidationBuilderXml.javaClass
ValidationContext.javaInterface This interface has to be implemented by all classes that provide a context in which Validated bean instances can be validated.
ValidationError.javaClass Instances of this class detail subjects that were found invalid during validation.
ValidationFormatter.javaClass Since this entire class has been deprecated it will not even be tested anymore, use ValidationBuilder now instead.
ValidationGroup.javaClass
ValidationRule.javaInterface
ValidationRuleEmail.javaClass
ValidationRuleFormat.javaClass
ValidationRuleInList.javaClass
ValidationRuleLimitedDate.javaClass
ValidationRuleLimitedLength.javaClass
ValidationRuleNotEmpty.javaClass
ValidationRuleNotEqual.javaClass
ValidationRuleNotNull.javaClass
ValidationRuleRange.javaClass
ValidationRuleRegexp.javaClass
ValidationRuleSameAs.javaClass
ValidationRuleUrl.javaClass
ValidityChecks.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.