blob: 2f2ca8589e7c01d82b2d0f5a2b17bb439f1de91e (
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
|
<?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;
/**
* IBaseBehavior interface is the base behavior class from which all other
* behaviors types are derived
*
* @author Brad Anderson <javalizard@mac.com>
* @package Prado\Util
* @since 3.2.3
*/
interface IBaseBehavior {
/**
* Attaches the behavior object to the component.
* @param CComponent the component that this behavior is to be attached to.
*/
public function attach($component);
/**
* Detaches the behavior object from the component.
* @param CComponent the component that this behavior is to be detached from.
*/
public function detach($component);
}
|