blob: a98f44593604f2f3364f3f70888e1aae08fc2a53 (
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
36
37
38
39
40
|
<?php
/**
* TWizard and the relevant class definitions.
*
* @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.WebControls
*/
/**
* TCompleteWizardStep class.
*
* TCompleteWizardStep represents a wizard step of type TWizardStepType::Complete.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TCompleteWizardStep extends TWizardStep
{
/**
* @return TWizardStepType the wizard step type. Always TWizardStepType::Complete.
*/
public function getStepType()
{
return TWizardStepType::Complete;
}
/**
* @param string the wizard step type.
* @throws TInvalidOperationException whenever this method is invoked.
*/
public function setStepType($value)
{
throw new TInvalidOperationException('completewizardstep_steptype_readonly');
}
}
|