blob: 1f6f17cc4de141e43e548586c5f876193b163eeb (
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
74
75
76
77
78
79
80
81
82
|
<?php
/**
* TComponent, TPropertyValue classes
*
* @author Qiang Xue <qiang.xue@gmail.com>
*
* Global Events, intra-object events, Class behaviors, expanded behaviors
* @author Brad Anderson <javalizard@mac.com>
*
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Util
*/
namespace Prado\Util;
/**
* TClassBehaviorEventParameter class.
* TClassBehaviorEventParameter is the parameter sent with the class behavior changes.
*
* @author Brad Anderson <javalizard@mac.com>
* @package Prado\Util
* @since 3.2.3
*/
class TClassBehaviorEventParameter extends \Prado\TEventParameter
{
private $_class;
private $_name;
private $_behavior;
private $_priority;
/**
* Holds the parameters for the Class Behavior Events
* @param string $class this is the class to get the behavior
* @param string $name the name of the behavior
* @param object $behavior this is the behavior to implement the class behavior
*/
public function __construct($class,$name,$behavior,$priority)
{
$this->_class=$class;
$this->_name=$name;
$this->_behavior=$behavior;
$this->_priority=$priority;
}
/**
* This is the class to get the behavior
* @return string the class to get the behavior
*/
public function getClass()
{
return $this->_class;
}
/**
* name of the behavior
* @return string the name to get the behavior
*/
public function getName()
{
return $this->_name;
}
/**
* This is the behavior which the class is to get
* @return object the behavior to implement
*/
public function getBehavior()
{
return $this->_behavior;
}
/**
* This is the priority which the behavior is to get
* @return numeric the priority of the behavior
*/
public function getPriority()
{
return $this->_priority;
}
}
|