* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado */ namespace Prado; /** * \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 * @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); }