1 | <?php |
||
27 | class DocumentInformations |
||
28 | { |
||
29 | /** |
||
30 | * Start Date |
||
31 | * @var int |
||
32 | */ |
||
33 | private $startDate; |
||
34 | |||
35 | /** |
||
36 | * End Date |
||
37 | * @var int |
||
38 | */ |
||
39 | private $endDate; |
||
40 | |||
41 | /** |
||
42 | * Create a new PHPProject_DocumentInformations |
||
43 | */ |
||
44 | 26 | public function __construct() |
|
47 | |||
48 | /** |
||
49 | * Get Start Date |
||
50 | * @return int |
||
51 | */ |
||
52 | 2 | public function getStartDate() |
|
56 | |||
57 | /** |
||
58 | * Set Start Date |
||
59 | * @param int $pValue |
||
60 | * @return DocumentInformations |
||
61 | */ |
||
62 | 2 | public function setStartDate($pValue = null) |
|
76 | |||
77 | /** |
||
78 | * Get End Date |
||
79 | * @return int |
||
80 | */ |
||
81 | 2 | public function getEndDate() |
|
85 | |||
86 | /** |
||
87 | * Set End Date |
||
88 | * @param int $pValue |
||
89 | * @return DocumentInformations |
||
90 | */ |
||
91 | 1 | public function setEndDate($pValue = null) |
|
105 | } |
||
106 |