blob: 370d607f88dcebf06b0cfd92ab8adcbebe5fb630 (
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
|
<?php
/**
* Core interfaces essential for TApplication class.
*
* @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
*/
namespace Prado;
/**
* IDataRenderer interface.
*
* If a control wants to be used a renderer for another data-bound control,
* this interface must be implemented.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado
* @since 3.1
*/
interface IDataRenderer
{
/**
* @return mixed the data bound to this object
*/
public function getData();
/**
* @param mixed the data to be bound to this object
*/
public function setData($value);
}
|