summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TRangeValidationDataType.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/TRangeValidationDataType.php')
-rw-r--r--framework/Web/UI/WebControls/TRangeValidationDataType.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TRangeValidationDataType.php b/framework/Web/UI/WebControls/TRangeValidationDataType.php
new file mode 100644
index 00000000..d876110c
--- /dev/null
+++ b/framework/Web/UI/WebControls/TRangeValidationDataType.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * TRangeValidator class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2014 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @package System.Web.UI.WebControls
+ */
+
+
+/**
+ * TRangeValidationDataType class.
+ * TRangeValidationDataType defines the enumerable type for the possible data types that
+ * a range validator can validate upon.
+ *
+ * The following enumerable values are defined:
+ * - Integer
+ * - Float
+ * - Date
+ * - String
+ * - StringLength
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @package System.Web.UI.WebControls
+ * @since 3.0.4
+ */
+class TRangeValidationDataType extends TValidationDataType
+{
+ const StringLength='StringLength';
+} \ No newline at end of file