blob: d9822d3f83c055485cb972d445b1c6cc586a9915 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?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
*/
/**
* TWizardNavigationContainer class.
*
* TWizardNavigationContainer represents a control containing
* a wizard navigation. The navigation may contain a few buttons, including
* {@link getPreviousButton PreviousButton}, {@link getNextButton NextButton},
* {@link getCancelButton CancelButton}, {@link getCompleteButton CompleteButton}.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TWizardNavigationContainer extends TControl implements INamingContainer
{
private $_previousButton=null;
private $_nextButton=null;
private $_cancelButton=null;
private $_completeButton=null;
/**
* @return mixed the previous button
*/
public function getPreviousButton()
{
return $this->_previousButton;
}
/**
* @param mixed the previous button
*/
public function setPreviousButton($value)
{
$this->_previousButton=$value;
}
/**
* @return mixed the next button
*/
public function getNextButton()
{
return $this->_nextButton;
}
/**
* @param mixed the next button
*/
public function setNextButton($value)
{
$this->_nextButton=$value;
}
/**
* @return mixed the cancel button
*/
public function getCancelButton()
{
return $this->_cancelButton;
}
/**
* @param mixed the cancel button
*/
public function setCancelButton($value)
{
$this->_cancelButton=$value;
}
/**
* @return mixed the complete button
*/
public function getCompleteButton()
{
return $this->_completeButton;
}
/**
* @param mixed the complete button
*/
public function setCompleteButton($value)
{
$this->_completeButton=$value;
}
}
|