Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / protos / addressbook.php
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?php
// DO NOT EDIT! Generated by Protobuf for PHP protoc plugin @package_version@
// Source: addressbook.proto
//   Date: 2011-04-13 17:07:17
 
namespace tests {
 
  class Person extends \DrSlump\Protobuf\Message {
 
    /** @var \Closure[] */
    protected static $__extensions = array();
 
    public static function descriptor()
    {
        $descriptor = new \DrSlump\Protobuf\Descriptor('\tests\Person');
 
        // required  name = 1
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 1;
        $f->name      = "name";
        $f->type      = 9;
        $f->rule      = 2;
        $descriptor->addField($f);
 
        // required  id = 2
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 2;
        $f->name      = "id";
        $f->type      = 5;
        $f->rule      = 2;
        $descriptor->addField($f);
 
        // optional  email = 3
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 3;
        $f->name      = "email";
        $f->type      = 9;
        $f->rule      = 1;
        $descriptor->addField($f);
 
        // repeated .tests.Person.PhoneNumber phone = 4
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 4;
        $f->name      = "phone";
        $f->type      = 11;
        $f->rule      = 3;
        $f->reference = '\tests\Person\PhoneNumber';
        $descriptor->addField($f);
 
        foreach (self::$__extensions as $cb) {
          $descriptor->addField($cb(), true);
        }
 
      return $descriptor;
    }
 
    /** @var string */
    public $name = null;
    
    /** @var int */
    public $id = null;
    
    /** @var string */
    public $email = null;
    
    /** @var \tests\Person\PhoneNumber[] */
    public $phone = array();
    
 
    /**
     * Check if <name> has a value
     *
     * @return boolean
     */
    public function hasName(){
      return $this->_has(1);
    }
    
    /**
     * Clear <name> value
     *
     * @return \tests\Person
     */
    public function clearName(){
      return $this->_clear(1);
    }
    
    /**
     * Get <name> value
     *
     * @return string
     */
    public function getName(){
      return $this->_get(1);
    }
    
    /**
     * Set <name> value
     *
     * @param string $value
     * @return \tests\Person
     */
    public function setName( $value){
      return $this->_set(1, $value);
    }
    
    /**
     * Check if <id> has a value
     *
     * @return boolean
     */
    public function hasId(){
      return $this->_has(2);
    }
    
    /**
     * Clear <id> value
     *
     * @return \tests\Person
     */
    public function clearId(){
      return $this->_clear(2);
    }
    
    /**
     * Get <id> value
     *
     * @return int
     */
    public function getId(){
      return $this->_get(2);
    }
    
    /**
     * Set <id> value
     *
     * @param int $value
     * @return \tests\Person
     */
    public function setId( $value){
      return $this->_set(2, $value);
    }
    
    /**
     * Check if <email> has a value
     *
     * @return boolean
     */
    public function hasEmail(){
      return $this->_has(3);
    }
    
    /**
     * Clear <email> value
     *
     * @return \tests\Person
     */
    public function clearEmail(){
      return $this->_clear(3);
    }
    
    /**
     * Get <email> value
     *
     * @return string
     */
    public function getEmail(){
      return $this->_get(3);
    }
    
    /**
     * Set <email> value
     *
     * @param string $value
     * @return \tests\Person
     */
    public function setEmail( $value){
      return $this->_set(3, $value);
    }
    
    /**
     * Check if <phone> has a value
     *
     * @return boolean
     */
    public function hasPhone(){
      return $this->_has(4);
    }
    
    /**
     * Clear <phone> value
     *
     * @return \tests\Person
     */
    public function clearPhone(){
      return $this->_clear(4);
    }
    
    /**
     * Get <phone> value
     *
     * @param int $idx
     * @return \tests\Person\PhoneNumber
     */
    public function getPhone($idx = NULL){
      return $this->_get(4, $idx);
    }
    
    /**
     * Set <phone> value
     *
     * @param \tests\Person\PhoneNumber $value
     * @return \tests\Person
     */
    public function setPhone(\tests\Person\PhoneNumber $value, $idx = NULL){
      return $this->_set(4, $value, $idx);
    }
    
    /**
     * Get all elements of <phone>
     *
     * @return \tests\Person\PhoneNumber[]
     */
    public function getPhoneList(){
     return $this->_get(4);
    }
    
    /**
     * Add a new element to <phone>
     *
     * @param \tests\Person\PhoneNumber $value
     * @return \tests\Person
     */
    public function addPhone(\tests\Person\PhoneNumber $value){
     return $this->_add(4, $value);
    }
    
  }
}
 
namespace tests\Person {
 
  class PhoneType {
    const MOBILE = 0;
    const HOME = 1;
    const WORK = 2;
  }
}
 
namespace tests\Person {
 
  class PhoneNumber extends \DrSlump\Protobuf\Message {
 
    /** @var \Closure[] */
    protected static $__extensions = array();
 
    public static function descriptor(\DrSlump\Protobuf\Descriptor $descriptor = NULL)
    {
        $descriptor = new \DrSlump\Protobuf\Descriptor('\tests\Person\PhoneNumber');
 
        // required  number = 1
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 1;
        $f->name      = "number";
        $f->type      = 9;
        $f->rule      = 2;
        $descriptor->addField($f);
 
        // optional .tests.Person.PhoneType type = 2
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 2;
        $f->name      = "type";
        $f->type      = 14;
        $f->rule      = 1;
        $f->reference = '\tests\Person\PhoneType';
        $f->default   = \tests\Person\PhoneType::HOME;
        $descriptor->addField($f);
 
        foreach (self::$__extensions as $cb) {
          $descriptor->addField($cb(), true);
        }
 
      return $descriptor;
    }
 
    /** @var string */
    public $number = null;
    
    /** @var int - \tests\Person\PhoneType */
    public $type = \tests\Person\PhoneType::HOME;
    
 
    /**
     * Check if <number> has a value
     *
     * @return boolean
     */
    public function hasNumber(){
      return $this->_has(1);
    }
    
    /**
     * Clear <number> value
     *
     * @return \tests\Person\PhoneNumber
     */
    public function clearNumber(){
      return $this->_clear(1);
    }
    
    /**
     * Get <number> value
     *
     * @return string
     */
    public function getNumber(){
      return $this->_get(1);
    }
    
    /**
     * Set <number> value
     *
     * @param string $value
     * @return \tests\Person\PhoneNumber
     */
    public function setNumber( $value){
      return $this->_set(1, $value);
    }
    
    /**
     * Check if <type> has a value
     *
     * @return boolean
     */
    public function hasType(){
      return $this->_has(2);
    }
    
    /**
     * Clear <type> value
     *
     * @return \tests\Person\PhoneNumber
     */
    public function clearType(){
      return $this->_clear(2);
    }
    
    /**
     * Get <type> value
     *
     * @return int - \tests\Person\PhoneType
     */
    public function getType(){
      return $this->_get(2);
    }
    
    /**
     * Set <type> value
     *
     * @param int - \tests\Person\PhoneType $value
     * @return \tests\Person\PhoneNumber
     */
    public function setType( $value){
      return $this->_set(2, $value);
    }
    
  }
}
 
namespace tests {
 
  class AddressBook extends \DrSlump\Protobuf\Message {
 
    /** @var \Closure[] */
    protected static $__extensions = array();
 
    public static function descriptor(\DrSlump\Protobuf\Descriptor $descriptor = NULL)
    {
        $descriptor = new \DrSlump\Protobuf\Descriptor('\tests\AddressBook');
 
        // repeated .tests.Person person = 1
        $f = new \DrSlump\Protobuf\Field();
        $f->number    = 1;
        $f->name      = "person";
        $f->type      = 11;
        $f->rule      = 3;
        $f->reference = '\tests\Person';
        $descriptor->addField($f);
 
        foreach (self::$__extensions as $cb) {
          $descriptor->addField($cb(), true);
        }
 
      return $descriptor;
    }
 
    /** @var \tests\Person[] */
    public $person = array();
    
 
    /**
     * Check if <person> has a value
     *
     * @return boolean
     */
    public function hasPerson(){
      return $this->_has(1);
    }
    
    /**
     * Clear <person> value
     *
     * @return \tests\AddressBook
     */
    public function clearPerson(){
      return $this->_clear(1);
    }
    
    /**
     * Get <person> value
     *
     * @param int $idx
     * @return \tests\Person
     */
    public function getPerson($idx = NULL){
      return $this->_get(1, $idx);
    }
    
    /**
     * Set <person> value
     *
     * @param \tests\Person $value
     * @return \tests\AddressBook
     */
    public function setPerson(\tests\Person $value, $idx = NULL){
      return $this->_set(1, $value, $idx);
    }
    
    /**
     * Get all elements of <person>
     *
     * @return \tests\Person[]
     */
    public function getPersonList(){
     return $this->_get(1);
    }
    
    /**
     * Add a new element to <person>
     *
     * @param \tests\Person $value
     * @return \tests\AddressBook
     */
    public function addPerson(\tests\Person $value){
     return $this->_add(1, $value);
    }
    
  }
}