blob: 2438dbdfc53cfbcbfb8e14ea010501052e2825f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php
/**
* TCustomValidator 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.WebControls
*/
/**
* TServerValidateEventParameter class
*
* TServerValidateEventParameter encapsulates the parameter data for
* <b>OnServerValidate</b> event of TCustomValidator components.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TServerValidateEventParameter extends TEventParameter
{
/**
* the value to be validated
* @var string
*/
private $_value='';
/**
* whether the value is valid
* @var boolean
*/
private $_isValid=true;
/**
* Constructor.
* @param string property value to be validated
* @param boolean whether the value is valid
*/
public function __construct($value,$isValid)
{
$this->_value=$value;
$this->setIsValid($isValid);
}
/**
* @return string value to be validated
*/
public function getValue()
{
return $this->_value;
}
/**
* @return boolean whether the value is valid
*/
public function getIsValid()
{
return $this->_isValid;
}
/**
* @param boolean whether the value is valid
*/
public function setIsValid($value)
{
$this->_isValid=TPropertyValue::ensureBoolean($value);
}
}
|