diff options
Diffstat (limited to 'framework/Web/UI/IValidatable.php')
-rw-r--r-- | framework/Web/UI/IValidatable.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/framework/Web/UI/IValidatable.php b/framework/Web/UI/IValidatable.php new file mode 100644 index 00000000..5b8967e5 --- /dev/null +++ b/framework/Web/UI/IValidatable.php @@ -0,0 +1,36 @@ +<?php +/** + * TControl, TControlCollection, TEventParameter and INamingContainer class file + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.Web.UI + */ + + +/** + * IValidatable interface + * + * If a control wants to be validated by a validator, it must implement this interface. + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @package System.Web.UI + * @since 3.0 + */ +interface IValidatable +{ + /** + * @return mixed the value of the property to be validated. + */ + public function getValidationPropertyValue(); + /** + * @return boolean wether this control's validators validated successfully (must default to true) + */ + public function getIsValid(); + /** + * @return boolean wether this control's validators validated successfully + */ + public function setIsValid($value); +}
\ No newline at end of file |