Object
|
--HashMap
|
--ActionMapping
Located in File: Program_Root/ActionMapping.php
The ActionMapping class represents the information that the ActionController knows about the ActionMapping of a particular request to an instance of a particular Action class. The ActionMapping is passed to the perform() method of the Action class itself, enabling access to this information directly. An ActionMapping has the following minimal set of properties. Additional properties can be provided as needed by subclasses.
phrame$Id: ActionMapping.html,v 1.1.1.1 2002/11/19 16:47:22 arcano Exp $Arnold Cano| Class Variable Summary |
$_input
Default Value:
|
$_name
Default Value:
|
$_type
Default Value:
|
$_validate
Default Value:
|
| Inherited Class Variable Summary | ||||||
Inherited From Class HashMap
|
| Inherited Method Summary | ||||||||
|
Inherited From Class HashMap
|
||||||||
Inherited From Class Object
|
| Variable Detail |
| Method Detail |
void constructor ActionMapping ( $name, $mapping )
Create a ActionMapping with the specified values.
- string $name: - array $mapping: publicstring getInput ( )
Get the input URI of the ActionForward.
publicstring getName ( )
Get the name of the ActionForward.
publicstring getType ( )
Get the type of the ActionForward.
publicinteger getValidate ( )
Get the validate flag of the ActionForward.
publicvoid setInput ( $input )
Set the input URI of the ActionForward.
- string $input: publicvoid setName ( $name )
Set the name of the ActionForward.
- string $name: publicvoid setType ( $type )
Set the type of the ActionForward.
- string $type: publicvoid setValidate ( $validate )
Set the validate flag of the ActionForward.
- string $validate: publicvoid _initActionForwards ( $forwards )
Initialize the ActionForwards array associated with this ActionMapping.
- array $forwards: private