Java Doc for CompositeValidator.java in  » Web-Framework » Millstone » org » millstone » base » data » validator » 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 » Millstone » org.millstone.base.data.validator 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.millstone.base.data.validator.CompositeValidator

CompositeValidator
public class CompositeValidator implements Validator(Code)
Composite validator. This validator allows you to chain (compose) many validators to validate one field. The contained validators may be required to all validate the value to validate or it may be enough that one contained validator validates the value. This behaviour is controlled by the modes AND and OR.
author:
   IT Mill Ltd.
version:
   3.1.1
since:
   3.0


Field Summary
final public static  intMODE_AND
     The validators are combined with AND clause: validity of the composite implies validity of the all validators it is composed of must be valid.
final public static  intMODE_DEFAULT
    
final public static  intMODE_OR
     The validators are combined with OR clause: validity of the composite implies that some of validators it is composed of must be valid.

Constructor Summary
public  CompositeValidator()
    
public  CompositeValidator(int mode, String errorMessage)
    

Method Summary
public  voidaddValidator(Validator validator)
    
public  StringgetErrorMessage()
     Get the error message for the composite validator.
final public  intgetMode()
     Get the mode of the validator.
public  CollectiongetSubValidators(Class validatorType)
     Get sub-validators by class.
public  booleanisValid(Object value)
     Check the validity of the the given value.
public  voidremoveValidator(Validator validator)
    
public  voidsetErrorMessage(String errorMessage)
     Set the error message for the composite validator.
public  voidsetMode(int mode)
     Set the mode of the validator.
public  voidvalidate(Object value)
     Validate the the given value. The value is valid, if:
  • MODE_AND: All of the sub-validators are valid
  • MODE_OR: Any of the sub-validators are valid
If the value is invalid, validation error is thrown.

Field Detail
MODE_AND
final public static int MODE_AND(Code)
The validators are combined with AND clause: validity of the composite implies validity of the all validators it is composed of must be valid.



MODE_DEFAULT
final public static int MODE_DEFAULT(Code)
The validators are combined with and clause: validity of the composite implies validity of the all validators it is composed of



MODE_OR
final public static int MODE_OR(Code)
The validators are combined with OR clause: validity of the composite implies that some of validators it is composed of must be valid.




Constructor Detail
CompositeValidator
public CompositeValidator()(Code)
Construct composite validator in AND mode without error message



CompositeValidator
public CompositeValidator(int mode, String errorMessage)(Code)
Construct composite validator in given mode




Method Detail
addValidator
public void addValidator(Validator validator)(Code)
Add validator to the interface



getErrorMessage
public String getErrorMessage()(Code)
Get the error message for the composite validator. If the error message is null, original error messages of the sub-validators are used instead.



getMode
final public int getMode()(Code)
Get the mode of the validator. Operation mode of the validator: MODE_AND or MODE_OR.



getSubValidators
public Collection getSubValidators(Class validatorType)(Code)
Get sub-validators by class.

If the component contains directly or recursively (it contains another composite containing the validator) validators compatible with given type they are returned. This only applies to AND mode composite validators.

If the validator is in OR mode or does not contain any validators of given type null is returned.

Collection of validators compatible with given type that must apply or null if none fould.



isValid
public boolean isValid(Object value)(Code)
Check the validity of the the given value. The value is valid, if:
  • MODE_AND: All of the sub-validators are valid
  • MODE_OR: Any of the sub-validators are valid



removeValidator
public void removeValidator(Validator validator)(Code)
Remove a validator from the composite



setErrorMessage
public void setErrorMessage(String errorMessage)(Code)
Set the error message for the composite validator. If the error message is null, original error messages of the sub-validators are used instead.



setMode
public void setMode(int mode)(Code)
Set the mode of the validator. The valid modes are:
  • MODE_AND (default)
  • MODE_OR



validate
public void validate(Object value) throws Validator.InvalidValueException(Code)
Validate the the given value. The value is valid, if:
  • MODE_AND: All of the sub-validators are valid
  • MODE_OR: Any of the sub-validators are valid
If the value is invalid, validation error is thrown. If the error message is set (non-null), it is used. If the error message has not been set, the first error occurred is thrown.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.