blob: 934f6b515913614815f2acf62f4cfc51adfbb314 (
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
70
71
72
73
|
<?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 Prado\Web\UI
*/
namespace Prado\Web\UI;
/**
* TBroadcastEventParameter class
*
* TBroadcastEventParameter encapsulates the parameter data for
* events that are broadcasted. The name of of the event is specified via
* {@link setName Name} property while the event parameter is via
* {@link setParameter Parameter} property.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI
* @since 3.0
*/
class TBroadcastEventParameter extends TEventParameter
{
private $_name;
private $_param;
/**
* Constructor.
* @param string name of the broadcast event
* @param mixed parameter of the broadcast event
*/
public function __construct($name='',$parameter=null)
{
$this->_name=$name;
$this->_param=$parameter;
}
/**
* @return string name of the broadcast event
*/
public function getName()
{
return $this->_name;
}
/**
* @param string name of the broadcast event
*/
public function setName($value)
{
$this->_name=$value;
}
/**
* @return mixed parameter of the broadcast event
*/
public function getParameter()
{
return $this->_param;
}
/**
* @param mixed parameter of the broadcast event
*/
public function setParameter($value)
{
$this->_param=$value;
}
}
|