1 | <?php |
||
17 | class EntityVarMacro implements EntityInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $name; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $macroDefinition; |
||
28 | |||
29 | /** |
||
30 | * @var int |
||
31 | */ |
||
32 | protected $isSeq; |
||
33 | |||
34 | /** |
||
35 | * @var int |
||
36 | */ |
||
37 | protected $isRtc; |
||
38 | |||
39 | /** |
||
40 | * @var int |
||
41 | */ |
||
42 | protected $cPadding; |
||
43 | |||
44 | /** |
||
45 | * @var int |
||
46 | */ |
||
47 | protected $length; |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | 1 | public function getName() |
|
56 | |||
57 | /** |
||
58 | * @param string $name |
||
59 | */ |
||
60 | public function setName($name) |
||
64 | |||
65 | /** |
||
66 | * @return string |
||
67 | */ |
||
68 | 1 | public function getMacroDefinition() |
|
72 | |||
73 | /** |
||
74 | * @param string $macroDefinition |
||
75 | */ |
||
76 | public function setMacroDefinition($macroDefinition) |
||
80 | |||
81 | /** |
||
82 | * @return int |
||
83 | */ |
||
84 | 1 | public function getIsSeq() |
|
88 | |||
89 | /** |
||
90 | * @param int $isSeq |
||
91 | */ |
||
92 | public function setIsSeq($isSeq) |
||
96 | |||
97 | /** |
||
98 | * @return int |
||
99 | */ |
||
100 | 1 | public function getIsRtc() |
|
104 | |||
105 | /** |
||
106 | * @param int $isRtc |
||
107 | */ |
||
108 | public function setIsRtc($isRtc) |
||
112 | |||
113 | /** |
||
114 | * @return int |
||
115 | */ |
||
116 | 1 | public function getcPadding() |
|
120 | |||
121 | /** |
||
122 | * @param int $cPadding |
||
123 | */ |
||
124 | public function setcPadding($cPadding) |
||
128 | |||
129 | /** |
||
130 | * @return int |
||
131 | */ |
||
132 | 1 | public function getLength() |
|
136 | |||
137 | /** |
||
138 | * @param int $length |
||
139 | */ |
||
140 | public function setLength($length) |
||
144 | } |
||
145 |