PHP Class Prado\Web\UI\TBroadcastEventParameter

TBroadcastEventParameter encapsulates the parameter data for events that are broadcasted. The name of of the event is specified via {@link setName Name} property while the event parameter is via {@link setParameter Parameter} property.
Since: 3.0
Author: Qiang Xue ([email protected])
Inheritance: extends Prado\TEventParameter
Datei anzeigen Open project: pradosoft/prado

Public Methods

Method Description
__construct ( $name = '', $parameter = null ) Constructor.
getName ( ) : string
getParameter ( ) : mixed
setName ( $value )
setParameter ( $value )

Method Details

__construct() public method

Constructor.
public __construct ( $name = '', $parameter = null )

getName() public method

public getName ( ) : string
return string name of the broadcast event

getParameter() public method

public getParameter ( ) : mixed
return mixed parameter of the broadcast event

setName() public method

public setName ( $value )

setParameter() public method

public setParameter ( $value )