1 | <?php |
||
11 | class DSAKeyValueType |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @property mixed $p |
||
16 | */ |
||
17 | private $p = null; |
||
18 | |||
19 | /** |
||
20 | * @property mixed $q |
||
21 | */ |
||
22 | private $q = null; |
||
23 | |||
24 | /** |
||
25 | * @property mixed $g |
||
26 | */ |
||
27 | private $g = null; |
||
28 | |||
29 | /** |
||
30 | * @property mixed $y |
||
31 | */ |
||
32 | private $y = null; |
||
33 | |||
34 | /** |
||
35 | * @property mixed $j |
||
36 | */ |
||
37 | private $j = null; |
||
38 | |||
39 | /** |
||
40 | * @property mixed $seed |
||
41 | */ |
||
42 | private $seed = null; |
||
43 | |||
44 | /** |
||
45 | * @property mixed $pgenCounter |
||
46 | */ |
||
47 | private $pgenCounter = null; |
||
48 | |||
49 | /** |
||
50 | * Gets as p |
||
51 | * |
||
52 | * @return mixed |
||
53 | */ |
||
54 | public function getP() |
||
58 | |||
59 | /** |
||
60 | * Sets a new p |
||
61 | * |
||
62 | * @param mixed $p |
||
63 | * @return self |
||
64 | */ |
||
65 | public function setP($p) |
||
70 | |||
71 | /** |
||
72 | * Gets as q |
||
73 | * |
||
74 | * @return mixed |
||
75 | */ |
||
76 | public function getQ() |
||
80 | |||
81 | /** |
||
82 | * Sets a new q |
||
83 | * |
||
84 | * @param mixed $q |
||
85 | * @return self |
||
86 | */ |
||
87 | public function setQ($q) |
||
92 | |||
93 | /** |
||
94 | * Gets as g |
||
95 | * |
||
96 | * @return mixed |
||
97 | */ |
||
98 | public function getG() |
||
102 | |||
103 | /** |
||
104 | * Sets a new g |
||
105 | * |
||
106 | * @param mixed $g |
||
107 | * @return self |
||
108 | */ |
||
109 | public function setG($g) |
||
114 | |||
115 | /** |
||
116 | * Gets as y |
||
117 | * |
||
118 | * @return mixed |
||
119 | */ |
||
120 | public function getY() |
||
124 | |||
125 | /** |
||
126 | * Sets a new y |
||
127 | * |
||
128 | * @param mixed $y |
||
129 | * @return self |
||
130 | */ |
||
131 | public function setY($y) |
||
136 | |||
137 | /** |
||
138 | * Gets as j |
||
139 | * |
||
140 | * @return mixed |
||
141 | */ |
||
142 | public function getJ() |
||
146 | |||
147 | /** |
||
148 | * Sets a new j |
||
149 | * |
||
150 | * @param mixed $j |
||
151 | * @return self |
||
152 | */ |
||
153 | public function setJ($j) |
||
158 | |||
159 | /** |
||
160 | * Gets as seed |
||
161 | * |
||
162 | * @return mixed |
||
163 | */ |
||
164 | public function getSeed() |
||
168 | |||
169 | /** |
||
170 | * Sets a new seed |
||
171 | * |
||
172 | * @param mixed $seed |
||
173 | * @return self |
||
174 | */ |
||
175 | public function setSeed($seed) |
||
180 | |||
181 | /** |
||
182 | * Gets as pgenCounter |
||
183 | * |
||
184 | * @return mixed |
||
185 | */ |
||
186 | public function getPgenCounter() |
||
190 | |||
191 | /** |
||
192 | * Sets a new pgenCounter |
||
193 | * |
||
194 | * @param mixed $pgenCounter |
||
195 | * @return self |
||
196 | */ |
||
197 | public function setPgenCounter($pgenCounter) |
||
202 | |||
203 | |||
204 | } |
||
205 | |||
206 |