blob: 9ab2cb945dff7193c6d3e6c20f89e9c1a974b22a (
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
|
<?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 System.Web.UI
*/
/**
* IPostBackEventHandler interface
*
* If a control wants to respond to postback event, it must implement this interface.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI
* @since 3.0
*/
interface IPostBackEventHandler
{
/**
* Raises postback event.
* The implementation of this function should raise appropriate event(s) (e.g. OnClick, OnCommand)
* indicating the component is responsible for the postback event.
* @param string the parameter associated with the postback event
*/
public function raisePostBackEvent($param);
}
|