protobufjs 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/.travis.yml +2 -1
  2. package/README.md +144 -22
  3. package/bin/pbjs +2 -2
  4. package/bower.json +2 -2
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +8 -0
  7. package/cli/pbjs/util.js +1 -1
  8. package/cli/pbjs.js +1 -1
  9. package/dist/protobuf-light.js +166 -128
  10. package/dist/protobuf-light.min.js +88 -81
  11. package/dist/protobuf-light.min.js.gz +0 -0
  12. package/dist/protobuf-light.min.map +4 -4
  13. package/dist/protobuf.js +171 -129
  14. package/dist/protobuf.min.js +106 -98
  15. package/dist/protobuf.min.js.gz +0 -0
  16. package/dist/protobuf.min.map +4 -4
  17. package/docs/ProtoBuf.Builder.Message.html +1408 -971
  18. package/docs/ProtoBuf.Builder.Service.html +266 -197
  19. package/docs/ProtoBuf.Builder.html +758 -542
  20. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  21. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  22. package/docs/ProtoBuf.DotProto.html +20 -12
  23. package/docs/ProtoBuf.Element.html +554 -554
  24. package/docs/ProtoBuf.Map.html +158 -123
  25. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  26. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  27. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  28. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  29. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  30. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  31. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  32. package/docs/ProtoBuf.Reflect.Message.html +915 -651
  33. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  34. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  35. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  36. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  37. package/docs/ProtoBuf.Reflect.T.html +268 -197
  38. package/docs/ProtoBuf.Reflect.html +20 -12
  39. package/docs/ProtoBuf.Util.html +169 -118
  40. package/docs/ProtoBuf.html +840 -628
  41. package/docs/ProtoBuf.js.html +177 -134
  42. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  43. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  44. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  45. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  46. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  48. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  49. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  51. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  52. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  53. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  54. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  55. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  57. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  58. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  60. package/docs/index.html +7 -5
  61. package/docs/styles/jsdoc-default.css +95 -75
  62. package/docs/styles/prettify-tomorrow.css +1 -1
  63. package/examples/protoify/json.js +123 -123
  64. package/examples/protoify/json.json +123 -123
  65. package/examples/websocket/server.js +4 -4
  66. package/externs/protobuf.js +1 -1
  67. package/jsdoc.json +1 -1
  68. package/package.json +2 -2
  69. package/scripts/build.js +53 -53
  70. package/src/ProtoBuf/Builder/Message.js +9 -5
  71. package/src/ProtoBuf/Builder.js +19 -2
  72. package/src/ProtoBuf/DotProto/Parser.js +5 -1
  73. package/src/ProtoBuf/Reflect/Element.js +13 -1
  74. package/src/ProtoBuf/Reflect/Message/Field.js +2 -2
  75. package/src/ProtoBuf/Reflect/Message.js +6 -1
  76. package/src/ProtoBuf/Util.js +116 -116
  77. package/src/bower.json +1 -1
  78. package/src/google/protobuf/descriptor.json +27 -1
  79. package/tests/bench.txt +373 -373
  80. package/tests/complex.json +8 -1
  81. package/tests/custom-options.json +169 -169
  82. package/tests/extend.json +71 -71
  83. package/tests/imports.json +83 -83
  84. package/tests/nodeunit-browser/nodeunit.css +70 -70
  85. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  86. package/tests/options.json +32 -32
  87. package/tests/proto2js/Bar.json +46 -46
  88. package/tests/suite.js +43 -1
  89. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  90. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  91. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  92. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  93. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  94. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  95. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  96. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  97. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  98. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  99. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  100. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  101. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  102. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  103. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  104. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  105. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  106. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  107. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  108. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  109. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  110. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  111. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  112. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  113. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  114. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  115. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  116. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  117. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  118. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  119. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  120. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  121. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  122. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  123. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  124. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  125. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  126. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  127. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  138. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  139. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  140. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  141. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  142. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  143. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  144. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  145. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  146. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  147. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  148. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  149. package/sandbox/gapi/test.js +0 -17
  150. package/sandbox/gapi/test.proto +0 -12
  151. package/sandbox/issue146/MyOptions.proto +0 -28
  152. package/sandbox/issue146/Sample.proto +0 -21
  153. package/sandbox/issue146/main.js +0 -3
  154. package/sandbox/issue147/enum.proto +0 -8
  155. package/sandbox/issue147/main.js +0 -3
  156. package/sandbox/issue182/commands.proto +0 -10
  157. package/sandbox/issue182/execute.js +0 -22
  158. package/sandbox/issue182/session_commands.proto +0 -14
  159. package/sandbox/issue289/A.proto +0 -8
  160. package/sandbox/issue289/B.proto +0 -8
  161. package/sandbox/issue289/common.proto +0 -5
  162. package/sandbox/issue289/main.js +0 -7
  163. package/sandbox/issue300/IAuth.proto +0 -14
  164. package/sandbox/issue300/Request.proto +0 -14
  165. package/sandbox/issue300/main.js +0 -26
  166. package/sandbox/issue347/index.js +0 -27
  167. package/sandbox/issue355/main.proto +0 -15
  168. package/sandbox/issue42/innerextend.proto +0 -18
  169. package/sandbox/issue42/main.js +0 -8
  170. package/sandbox/issue42/outerextend.proto +0 -17
@@ -23,43 +23,47 @@
23
23
 
24
24
 
25
25
 
26
+
26
27
  <section>
27
28
 
28
29
  <header>
29
- <h2>
30
- <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
31
30
 
32
- ExtensionField
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
33
+
34
+ ExtensionField
35
+ </h2>
36
+
34
37
 
35
38
  </header>
36
39
 
37
40
  <article>
38
41
  <div class="container-overview">
39
42
 
43
+
40
44
 
41
45
 
42
-
43
- <dt>
46
+
44
47
  <h4 class="name" id="ExtensionField"><span class="type-signature"></span>new ExtensionField<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, rule, type, name, id, options<span class="signature-attributes">opt, non-null</span>)</span><span class="type-signature"></span></h4>
45
48
 
46
49
 
47
- </dt>
48
- <dd>
49
50
 
50
-
51
- <div class="description">
52
- <p>Constructs a new Message ExtensionField.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Message ExtensionField.</p>
55
+ </div>
56
+
57
+
58
+
59
+
59
60
 
61
+
62
+
63
+
64
+
65
+ <h5>Parameters:</h5>
60
66
 
61
- <h5>Parameters:</h5>
62
-
63
67
 
64
68
  <table class="params">
65
69
  <thead>
@@ -303,10 +307,20 @@
303
307
 
304
308
  </tbody>
305
309
  </table>
310
+
311
+
312
+
313
+
314
+
315
+
316
+ <dl class="details">
317
+
306
318
 
307
319
 
308
320
 
309
- <dl class="details">
321
+
322
+
323
+
310
324
 
311
325
 
312
326
 
@@ -328,7 +342,7 @@
328
342
 
329
343
  <dt class="tag-source">Source:</dt>
330
344
  <dd class="tag-source"><ul class="dummy"><li>
331
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3749">line 3749</a>
345
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3774">line 3774</a>
332
346
  </li></ul></dd>
333
347
 
334
348
 
@@ -340,20 +354,19 @@
340
354
  </dl>
341
355
 
342
356
 
343
-
344
357
 
345
-
346
358
 
347
-
348
359
 
349
-
350
360
 
351
-
352
361
 
353
-
354
362
 
355
-
356
- </dd>
363
+
364
+
365
+
366
+
367
+
368
+
369
+
357
370
 
358
371
 
359
372
  </div>
@@ -361,10 +374,13 @@
361
374
 
362
375
  <h3 class="subsection-title">Extends</h3>
363
376
 
364
- <ul>
365
- <li><a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a></li>
366
- </ul>
367
-
377
+
378
+
379
+
380
+ <ul>
381
+ <li><a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a></li>
382
+ </ul>
383
+
368
384
 
369
385
 
370
386
 
@@ -379,35 +395,34 @@
379
395
 
380
396
  <h3 class="subsection-title">Members</h3>
381
397
 
382
- <dl>
398
+
383
399
 
384
- <dt>
385
- <h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
400
+ <h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
386
401
 
387
-
388
- </dt>
389
- <dd>
390
-
391
- <div class="description">
392
- <p>Builder reference.</p>
393
- </div>
394
-
395
402
 
396
-
397
- <h5>Type:</h5>
398
- <ul>
399
- <li>
400
-
403
+
404
+
405
+ <div class="description">
406
+ <p>Builder reference.</p>
407
+ </div>
408
+
409
+
410
+
411
+ <h5>Type:</h5>
412
+ <ul>
413
+ <li>
414
+
401
415
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
402
416
 
403
417
 
404
- </li>
405
- </ul>
406
-
418
+ </li>
419
+ </ul>
420
+
421
+
422
+
423
+
407
424
 
408
-
409
425
  <dl class="details">
410
-
411
426
 
412
427
 
413
428
 
@@ -417,7 +432,15 @@
417
432
  <dt class="inherited-from">Inherited From:</dt>
418
433
  <dd class="inherited-from"><ul class="dummy"><li>
419
434
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
420
- </li></dd>
435
+ </li></ul></dd>
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
421
444
 
422
445
 
423
446
 
@@ -433,7 +456,7 @@
433
456
 
434
457
  <dt class="tag-source">Source:</dt>
435
458
  <dd class="tag-source"><ul class="dummy"><li>
436
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1413">line 1413</a>
459
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
437
460
  </li></ul></dd>
438
461
 
439
462
 
@@ -445,25 +468,48 @@
445
468
  </dl>
446
469
 
447
470
 
448
-
449
471
 
450
-
451
- </dd>
472
+
473
+
452
474
 
453
475
 
454
476
 
455
- <dt>
456
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
477
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
478
+
479
+
480
+
481
+
482
+ <div class="description">
483
+ <p>Fully qualified class name</p>
484
+ </div>
485
+
486
+
487
+
488
+ <h5>Type:</h5>
489
+ <ul>
490
+ <li>
491
+
492
+ <span class="param-type">string</span>
493
+
494
+
495
+ </li>
496
+ </ul>
497
+
498
+
499
+
500
+
501
+
502
+ <dl class="details">
457
503
 
458
-
459
- </dt>
460
- <dd>
461
504
 
462
505
 
463
506
 
464
507
 
465
508
 
466
- <dl class="details">
509
+ <dt class="inherited-from">Inherited From:</dt>
510
+ <dd class="inherited-from"><ul class="dummy"><li>
511
+ <a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
512
+ </li></ul></dd>
467
513
 
468
514
 
469
515
 
@@ -471,10 +517,7 @@
471
517
 
472
518
 
473
519
 
474
- <dt class="inherited-from">Inherited From:</dt>
475
- <dd class="inherited-from"><ul class="dummy"><li>
476
- <a href="ProtoBuf.Reflect.Message.Field.html#className">ProtoBuf.Reflect.Message.Field#className</a>
477
- </li></dd>
520
+
478
521
 
479
522
 
480
523
 
@@ -490,7 +533,7 @@
490
533
 
491
534
  <dt class="tag-source">Source:</dt>
492
535
  <dd class="tag-source"><ul class="dummy"><li>
493
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3293">line 3293</a>
536
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
494
537
  </li></ul></dd>
495
538
 
496
539
 
@@ -502,40 +545,38 @@
502
545
  </dl>
503
546
 
504
547
 
505
-
506
548
 
507
-
508
- </dd>
549
+
550
+
509
551
 
510
552
 
511
553
 
512
- <dt>
513
- <h4 class="name" id="defaultValue"><span class="type-signature"></span>defaultValue<span class="type-signature"> :*</span></h4>
554
+ <h4 class="name" id="defaultValue"><span class="type-signature"></span>defaultValue<span class="type-signature"> :*</span></h4>
514
555
 
515
-
516
- </dt>
517
- <dd>
518
-
519
- <div class="description">
520
- <p>Default value.</p>
521
- </div>
522
-
523
556
 
524
-
525
- <h5>Type:</h5>
526
- <ul>
527
- <li>
528
-
557
+
558
+
559
+ <div class="description">
560
+ <p>Default value.</p>
561
+ </div>
562
+
563
+
564
+
565
+ <h5>Type:</h5>
566
+ <ul>
567
+ <li>
568
+
529
569
  <span class="param-type">*</span>
530
570
 
531
571
 
532
- </li>
533
- </ul>
534
-
572
+ </li>
573
+ </ul>
574
+
575
+
576
+
577
+
535
578
 
536
-
537
579
  <dl class="details">
538
-
539
580
 
540
581
 
541
582
 
@@ -545,7 +586,15 @@
545
586
  <dt class="inherited-from">Inherited From:</dt>
546
587
  <dd class="inherited-from"><ul class="dummy"><li>
547
588
  <a href="ProtoBuf.Reflect.Message.Field.html#defaultValue">ProtoBuf.Reflect.Message.Field#defaultValue</a>
548
- </li></dd>
589
+ </li></ul></dd>
590
+
591
+
592
+
593
+
594
+
595
+
596
+
597
+
549
598
 
550
599
 
551
600
 
@@ -561,7 +610,7 @@
561
610
 
562
611
  <dt class="tag-source">Source:</dt>
563
612
  <dd class="tag-source"><ul class="dummy"><li>
564
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3359">line 3359</a>
613
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3384">line 3384</a>
565
614
  </li></ul></dd>
566
615
 
567
616
 
@@ -573,40 +622,38 @@
573
622
  </dl>
574
623
 
575
624
 
576
-
577
625
 
578
-
579
- </dd>
626
+
627
+
580
628
 
581
629
 
582
630
 
583
- <dt>
584
- <h4 class="name" id="element"><span class="type-signature"></span>element<span class="type-signature"> :ProtoBuf.Element</span></h4>
631
+ <h4 class="name" id="element"><span class="type-signature"></span>element<span class="type-signature"> :ProtoBuf.Element</span></h4>
585
632
 
586
-
587
- </dt>
588
- <dd>
589
-
590
- <div class="description">
591
- <p>Element implementation. Created in build() after types are resolved.</p>
592
- </div>
593
-
594
633
 
595
-
596
- <h5>Type:</h5>
597
- <ul>
598
- <li>
599
-
634
+
635
+
636
+ <div class="description">
637
+ <p>Element implementation. Created in build() after types are resolved.</p>
638
+ </div>
639
+
640
+
641
+
642
+ <h5>Type:</h5>
643
+ <ul>
644
+ <li>
645
+
600
646
  <span class="param-type">ProtoBuf.Element</span>
601
647
 
602
648
 
603
- </li>
604
- </ul>
605
-
649
+ </li>
650
+ </ul>
651
+
652
+
653
+
654
+
606
655
 
607
-
608
656
  <dl class="details">
609
-
610
657
 
611
658
 
612
659
 
@@ -616,7 +663,15 @@
616
663
  <dt class="inherited-from">Inherited From:</dt>
617
664
  <dd class="inherited-from"><ul class="dummy"><li>
618
665
  <a href="ProtoBuf.Reflect.Message.Field.html#element">ProtoBuf.Reflect.Message.Field#element</a>
619
- </li></dd>
666
+ </li></ul></dd>
667
+
668
+
669
+
670
+
671
+
672
+
673
+
674
+
620
675
 
621
676
 
622
677
 
@@ -632,7 +687,7 @@
632
687
 
633
688
  <dt class="tag-source">Source:</dt>
634
689
  <dd class="tag-source"><ul class="dummy"><li>
635
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3387">line 3387</a>
690
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3412">line 3412</a>
636
691
  </li></ul></dd>
637
692
 
638
693
 
@@ -644,39 +699,45 @@
644
699
  </dl>
645
700
 
646
701
 
647
-
648
702
 
649
-
650
- </dd>
703
+
704
+
651
705
 
652
706
 
653
707
 
654
- <dt>
655
- <h4 class="name" id="extension"><span class="type-signature">(non-null) </span>extension<span class="type-signature"> :<a href="ProtoBuf.Reflect.Extension.html">ProtoBuf.Reflect.Extension</a></span></h4>
708
+ <h4 class="name" id="extension"><span class="type-signature">(non-null) </span>extension<span class="type-signature"> :<a href="ProtoBuf.Reflect.Extension.html">ProtoBuf.Reflect.Extension</a></span></h4>
656
709
 
657
-
658
- </dt>
659
- <dd>
660
-
661
- <div class="description">
662
- <p>Extension reference.</p>
663
- </div>
664
-
665
710
 
666
-
667
- <h5>Type:</h5>
668
- <ul>
669
- <li>
670
-
711
+
712
+
713
+ <div class="description">
714
+ <p>Extension reference.</p>
715
+ </div>
716
+
717
+
718
+
719
+ <h5>Type:</h5>
720
+ <ul>
721
+ <li>
722
+
671
723
  <span class="param-type"><a href="ProtoBuf.Reflect.Extension.html">ProtoBuf.Reflect.Extension</a></span>
672
724
 
673
725
 
674
- </li>
675
- </ul>
726
+ </li>
727
+ </ul>
728
+
729
+
730
+
731
+
732
+
733
+ <dl class="details">
734
+
676
735
 
677
736
 
678
737
 
679
- <dl class="details">
738
+
739
+
740
+
680
741
 
681
742
 
682
743
 
@@ -698,7 +759,7 @@
698
759
 
699
760
  <dt class="tag-source">Source:</dt>
700
761
  <dd class="tag-source"><ul class="dummy"><li>
701
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3757">line 3757</a>
762
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3782">line 3782</a>
702
763
  </li></ul></dd>
703
764
 
704
765
 
@@ -710,40 +771,38 @@
710
771
  </dl>
711
772
 
712
773
 
713
-
714
774
 
715
-
716
- </dd>
775
+
776
+
717
777
 
718
778
 
719
779
 
720
- <dt>
721
- <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
780
+ <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
722
781
 
723
-
724
- </dt>
725
- <dd>
726
-
727
- <div class="description">
728
- <p>Unique message field id.</p>
729
- </div>
730
-
731
782
 
732
-
733
- <h5>Type:</h5>
734
- <ul>
735
- <li>
736
-
783
+
784
+
785
+ <div class="description">
786
+ <p>Unique message field id.</p>
787
+ </div>
788
+
789
+
790
+
791
+ <h5>Type:</h5>
792
+ <ul>
793
+ <li>
794
+
737
795
  <span class="param-type">number</span>
738
796
 
739
797
 
740
- </li>
741
- </ul>
742
-
798
+ </li>
799
+ </ul>
800
+
801
+
802
+
803
+
743
804
 
744
-
745
805
  <dl class="details">
746
-
747
806
 
748
807
 
749
808
 
@@ -753,7 +812,15 @@
753
812
  <dt class="inherited-from">Inherited From:</dt>
754
813
  <dd class="inherited-from"><ul class="dummy"><li>
755
814
  <a href="ProtoBuf.Reflect.Message.Field.html#id">ProtoBuf.Reflect.Message.Field#id</a>
756
- </li></dd>
815
+ </li></ul></dd>
816
+
817
+
818
+
819
+
820
+
821
+
822
+
823
+
757
824
 
758
825
 
759
826
 
@@ -769,7 +836,7 @@
769
836
 
770
837
  <dt class="tag-source">Source:</dt>
771
838
  <dd class="tag-source"><ul class="dummy"><li>
772
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3344">line 3344</a>
839
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3369">line 3369</a>
773
840
  </li></ul></dd>
774
841
 
775
842
 
@@ -781,41 +848,39 @@
781
848
  </dl>
782
849
 
783
850
 
784
-
785
851
 
786
-
787
- </dd>
852
+
853
+
788
854
 
789
855
 
790
856
 
791
- <dt>
792
- <h4 class="name" id="keyElement"><span class="type-signature"></span>keyElement<span class="type-signature"> :ProtoBuf.Element</span></h4>
857
+ <h4 class="name" id="keyElement"><span class="type-signature"></span>keyElement<span class="type-signature"> :ProtoBuf.Element</span></h4>
858
+
859
+
860
+
861
+
862
+ <div class="description">
863
+ <p>Key element implementation, for map fields. Created in build() after
864
+ types are resolved.</p>
865
+ </div>
866
+
867
+
868
+
869
+ <h5>Type:</h5>
870
+ <ul>
871
+ <li>
872
+
873
+ <span class="param-type">ProtoBuf.Element</span>
874
+
875
+
876
+ </li>
877
+ </ul>
793
878
 
794
-
795
- </dt>
796
- <dd>
797
-
798
- <div class="description">
799
- <p>Key element implementation, for map fields. Created in build() after
800
- types are resolved.</p>
801
- </div>
802
-
803
879
 
804
-
805
- <h5>Type:</h5>
806
- <ul>
807
- <li>
808
-
809
- <span class="param-type">ProtoBuf.Element</span>
810
880
 
811
881
 
812
- </li>
813
- </ul>
814
-
815
882
 
816
-
817
883
  <dl class="details">
818
-
819
884
 
820
885
 
821
886
 
@@ -825,7 +890,15 @@ types are resolved.</p>
825
890
  <dt class="inherited-from">Inherited From:</dt>
826
891
  <dd class="inherited-from"><ul class="dummy"><li>
827
892
  <a href="ProtoBuf.Reflect.Message.Field.html#keyElement">ProtoBuf.Reflect.Message.Field#keyElement</a>
828
- </li></dd>
893
+ </li></ul></dd>
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
829
902
 
830
903
 
831
904
 
@@ -841,7 +914,7 @@ types are resolved.</p>
841
914
 
842
915
  <dt class="tag-source">Source:</dt>
843
916
  <dd class="tag-source"><ul class="dummy"><li>
844
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3395">line 3395</a>
917
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3420">line 3420</a>
845
918
  </li></ul></dd>
846
919
 
847
920
 
@@ -853,31 +926,28 @@ types are resolved.</p>
853
926
  </dl>
854
927
 
855
928
 
856
-
857
929
 
858
-
859
- </dd>
930
+
931
+
860
932
 
861
933
 
862
934
 
863
- <dt>
864
- <h4 class="name" id="keyType"><span class="type-signature"></span>keyType<span class="type-signature"> :string|Object|null</span></h4>
935
+ <h4 class="name" id="keyType"><span class="type-signature"></span>keyType<span class="type-signature"> :string|Object|null</span></h4>
865
936
 
866
-
867
- </dt>
868
- <dd>
869
-
870
- <div class="description">
871
- <p>Message field key type. Type reference string if unresolved, protobuf
937
+
938
+
939
+
940
+ <div class="description">
941
+ <p>Message field key type. Type reference string if unresolved, protobuf
872
942
  type if resolved. Valid only if this.map === true, null otherwise.</p>
873
- </div>
874
-
943
+ </div>
875
944
 
876
-
877
- <h5>Type:</h5>
878
- <ul>
879
- <li>
880
-
945
+
946
+
947
+ <h5>Type:</h5>
948
+ <ul>
949
+ <li>
950
+
881
951
  <span class="param-type">string</span>
882
952
  |
883
953
 
@@ -887,13 +957,14 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
887
957
  <span class="param-type">null</span>
888
958
 
889
959
 
890
- </li>
891
- </ul>
892
-
960
+ </li>
961
+ </ul>
962
+
963
+
964
+
965
+
893
966
 
894
-
895
967
  <dl class="details">
896
-
897
968
 
898
969
 
899
970
 
@@ -903,7 +974,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
903
974
  <dt class="inherited-from">Inherited From:</dt>
904
975
  <dd class="inherited-from"><ul class="dummy"><li>
905
976
  <a href="ProtoBuf.Reflect.Message.Field.html#keyType">ProtoBuf.Reflect.Message.Field#keyType</a>
906
- </li></dd>
977
+ </li></ul></dd>
978
+
979
+
980
+
981
+
982
+
983
+
984
+
985
+
907
986
 
908
987
 
909
988
 
@@ -919,7 +998,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
919
998
 
920
999
  <dt class="tag-source">Source:</dt>
921
1000
  <dd class="tag-source"><ul class="dummy"><li>
922
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3322">line 3322</a>
1001
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3347">line 3347</a>
923
1002
  </li></ul></dd>
924
1003
 
925
1004
 
@@ -931,40 +1010,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
931
1010
  </dl>
932
1011
 
933
1012
 
934
-
935
1013
 
936
-
937
- </dd>
1014
+
1015
+
938
1016
 
939
1017
 
940
1018
 
941
- <dt>
942
- <h4 class="name" id="map"><span class="type-signature"></span>map<span class="type-signature"> :boolean</span></h4>
1019
+ <h4 class="name" id="map"><span class="type-signature"></span>map<span class="type-signature"> :boolean</span></h4>
943
1020
 
944
-
945
- </dt>
946
- <dd>
947
-
948
- <div class="description">
949
- <p>Message field map flag.</p>
950
- </div>
951
-
952
1021
 
953
-
954
- <h5>Type:</h5>
955
- <ul>
956
- <li>
957
-
1022
+
1023
+
1024
+ <div class="description">
1025
+ <p>Message field map flag.</p>
1026
+ </div>
1027
+
1028
+
1029
+
1030
+ <h5>Type:</h5>
1031
+ <ul>
1032
+ <li>
1033
+
958
1034
  <span class="param-type">boolean</span>
959
1035
 
960
1036
 
961
- </li>
962
- </ul>
963
-
1037
+ </li>
1038
+ </ul>
1039
+
1040
+
1041
+
1042
+
964
1043
 
965
-
966
1044
  <dl class="details">
967
-
968
1045
 
969
1046
 
970
1047
 
@@ -974,7 +1051,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
974
1051
  <dt class="inherited-from">Inherited From:</dt>
975
1052
  <dd class="inherited-from"><ul class="dummy"><li>
976
1053
  <a href="ProtoBuf.Reflect.Message.Field.html#map">ProtoBuf.Reflect.Message.Field#map</a>
977
- </li></dd>
1054
+ </li></ul></dd>
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
978
1063
 
979
1064
 
980
1065
 
@@ -990,7 +1075,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
990
1075
 
991
1076
  <dt class="tag-source">Source:</dt>
992
1077
  <dd class="tag-source"><ul class="dummy"><li>
993
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3314">line 3314</a>
1078
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3339">line 3339</a>
994
1079
  </li></ul></dd>
995
1080
 
996
1081
 
@@ -1002,40 +1087,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1002
1087
  </dl>
1003
1088
 
1004
1089
 
1005
-
1006
1090
 
1007
-
1008
- </dd>
1091
+
1092
+
1009
1093
 
1010
1094
 
1011
1095
 
1012
- <dt>
1013
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
1096
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
1014
1097
 
1015
-
1016
- </dt>
1017
- <dd>
1018
-
1019
- <div class="description">
1020
- <p>Object name in namespace.</p>
1021
- </div>
1022
-
1023
1098
 
1024
-
1025
- <h5>Type:</h5>
1026
- <ul>
1027
- <li>
1028
-
1099
+
1100
+
1101
+ <div class="description">
1102
+ <p>Object name in namespace.</p>
1103
+ </div>
1104
+
1105
+
1106
+
1107
+ <h5>Type:</h5>
1108
+ <ul>
1109
+ <li>
1110
+
1029
1111
  <span class="param-type">string</span>
1030
1112
 
1031
1113
 
1032
- </li>
1033
- </ul>
1034
-
1114
+ </li>
1115
+ </ul>
1116
+
1117
+
1118
+
1119
+
1035
1120
 
1036
-
1037
1121
  <dl class="details">
1038
-
1039
1122
 
1040
1123
 
1041
1124
 
@@ -1045,7 +1128,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1045
1128
  <dt class="inherited-from">Inherited From:</dt>
1046
1129
  <dd class="inherited-from"><ul class="dummy"><li>
1047
1130
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
1048
- </li></dd>
1131
+ </li></ul></dd>
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1049
1140
 
1050
1141
 
1051
1142
 
@@ -1061,7 +1152,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1061
1152
 
1062
1153
  <dt class="tag-source">Source:</dt>
1063
1154
  <dd class="tag-source"><ul class="dummy"><li>
1064
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1427">line 1427</a>
1155
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
1065
1156
  </li></ul></dd>
1066
1157
 
1067
1158
 
@@ -1073,40 +1164,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1073
1164
  </dl>
1074
1165
 
1075
1166
 
1076
-
1077
1167
 
1078
-
1079
- </dd>
1168
+
1169
+
1080
1170
 
1081
1171
 
1082
1172
 
1083
- <dt>
1084
- <h4 class="name" id="oneof"><span class="type-signature">(nullable) </span>oneof<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span></h4>
1173
+ <h4 class="name" id="oneof"><span class="type-signature">(nullable) </span>oneof<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span></h4>
1085
1174
 
1086
-
1087
- </dt>
1088
- <dd>
1089
-
1090
- <div class="description">
1091
- <p>Enclosing OneOf.</p>
1092
- </div>
1093
-
1094
1175
 
1095
-
1096
- <h5>Type:</h5>
1097
- <ul>
1098
- <li>
1099
-
1176
+
1177
+
1178
+ <div class="description">
1179
+ <p>Enclosing OneOf.</p>
1180
+ </div>
1181
+
1182
+
1183
+
1184
+ <h5>Type:</h5>
1185
+ <ul>
1186
+ <li>
1187
+
1100
1188
  <span class="param-type"><a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span>
1101
1189
 
1102
1190
 
1103
- </li>
1104
- </ul>
1105
-
1191
+ </li>
1192
+ </ul>
1193
+
1194
+
1195
+
1196
+
1106
1197
 
1107
-
1108
1198
  <dl class="details">
1109
-
1110
1199
 
1111
1200
 
1112
1201
 
@@ -1116,7 +1205,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1116
1205
  <dt class="inherited-from">Inherited From:</dt>
1117
1206
  <dd class="inherited-from"><ul class="dummy"><li>
1118
1207
  <a href="ProtoBuf.Reflect.Message.Field.html#oneof">ProtoBuf.Reflect.Message.Field#oneof</a>
1119
- </li></dd>
1208
+ </li></ul></dd>
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+
1120
1217
 
1121
1218
 
1122
1219
 
@@ -1132,7 +1229,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1132
1229
 
1133
1230
  <dt class="tag-source">Source:</dt>
1134
1231
  <dd class="tag-source"><ul class="dummy"><li>
1135
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3366">line 3366</a>
1232
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3391">line 3391</a>
1136
1233
  </li></ul></dd>
1137
1234
 
1138
1235
 
@@ -1144,40 +1241,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1144
1241
  </dl>
1145
1242
 
1146
1243
 
1147
-
1148
1244
 
1149
-
1150
- </dd>
1245
+
1246
+
1151
1247
 
1152
1248
 
1153
1249
 
1154
- <dt>
1155
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
1250
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
1156
1251
 
1157
-
1158
- </dt>
1159
- <dd>
1160
-
1161
- <div class="description">
1162
- <p>Message field options.</p>
1163
- </div>
1164
-
1165
1252
 
1166
-
1167
- <h5>Type:</h5>
1168
- <ul>
1169
- <li>
1170
-
1253
+
1254
+
1255
+ <div class="description">
1256
+ <p>Message field options.</p>
1257
+ </div>
1258
+
1259
+
1260
+
1261
+ <h5>Type:</h5>
1262
+ <ul>
1263
+ <li>
1264
+
1171
1265
  <span class="param-type">Object.&lt;string, *></span>
1172
1266
 
1173
1267
 
1174
- </li>
1175
- </ul>
1176
-
1268
+ </li>
1269
+ </ul>
1270
+
1271
+
1272
+
1273
+
1177
1274
 
1178
-
1179
1275
  <dl class="details">
1180
-
1181
1276
 
1182
1277
 
1183
1278
 
@@ -1187,7 +1282,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1187
1282
  <dt class="inherited-from">Inherited From:</dt>
1188
1283
  <dd class="inherited-from"><ul class="dummy"><li>
1189
1284
  <a href="ProtoBuf.Reflect.Message.Field.html#options">ProtoBuf.Reflect.Message.Field#options</a>
1190
- </li></dd>
1285
+ </li></ul></dd>
1286
+
1287
+
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+
1191
1294
 
1192
1295
 
1193
1296
 
@@ -1203,7 +1306,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1203
1306
 
1204
1307
  <dt class="tag-source">Source:</dt>
1205
1308
  <dd class="tag-source"><ul class="dummy"><li>
1206
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3352">line 3352</a>
1309
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3377">line 3377</a>
1207
1310
  </li></ul></dd>
1208
1311
 
1209
1312
 
@@ -1215,40 +1318,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1215
1318
  </dl>
1216
1319
 
1217
1320
 
1218
-
1219
1321
 
1220
-
1221
- </dd>
1322
+
1323
+
1222
1324
 
1223
1325
 
1224
1326
 
1225
- <dt>
1226
- <h4 class="name" id="originalName"><span class="type-signature"></span>originalName<span class="type-signature"> :string</span></h4>
1327
+ <h4 class="name" id="originalName"><span class="type-signature"></span>originalName<span class="type-signature"> :string</span></h4>
1227
1328
 
1228
-
1229
- </dt>
1230
- <dd>
1231
-
1232
- <div class="description">
1233
- <p>Original field name.</p>
1234
- </div>
1235
-
1236
1329
 
1237
-
1238
- <h5>Type:</h5>
1239
- <ul>
1240
- <li>
1241
-
1330
+
1331
+
1332
+ <div class="description">
1333
+ <p>Original field name.</p>
1334
+ </div>
1335
+
1336
+
1337
+
1338
+ <h5>Type:</h5>
1339
+ <ul>
1340
+ <li>
1341
+
1242
1342
  <span class="param-type">string</span>
1243
1343
 
1244
1344
 
1245
- </li>
1246
- </ul>
1247
-
1345
+ </li>
1346
+ </ul>
1347
+
1348
+
1349
+
1350
+
1248
1351
 
1249
-
1250
1352
  <dl class="details">
1251
-
1252
1353
 
1253
1354
 
1254
1355
 
@@ -1258,7 +1359,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1258
1359
  <dt class="inherited-from">Inherited From:</dt>
1259
1360
  <dd class="inherited-from"><ul class="dummy"><li>
1260
1361
  <a href="ProtoBuf.Reflect.Message.Field.html#originalName">ProtoBuf.Reflect.Message.Field#originalName</a>
1261
- </li></dd>
1362
+ </li></ul></dd>
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1262
1371
 
1263
1372
 
1264
1373
 
@@ -1274,7 +1383,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1274
1383
 
1275
1384
  <dt class="tag-source">Source:</dt>
1276
1385
  <dd class="tag-source"><ul class="dummy"><li>
1277
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3380">line 3380</a>
1386
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3405">line 3405</a>
1278
1387
  </li></ul></dd>
1279
1388
 
1280
1389
 
@@ -1286,40 +1395,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1286
1395
  </dl>
1287
1396
 
1288
1397
 
1289
-
1290
1398
 
1291
-
1292
- </dd>
1399
+
1400
+
1293
1401
 
1294
1402
 
1295
1403
 
1296
- <dt>
1297
- <h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
1404
+ <h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
1298
1405
 
1299
-
1300
- </dt>
1301
- <dd>
1302
-
1303
- <div class="description">
1304
- <p>Parent object.</p>
1305
- </div>
1306
-
1307
1406
 
1308
-
1309
- <h5>Type:</h5>
1310
- <ul>
1311
- <li>
1312
-
1407
+
1408
+
1409
+ <div class="description">
1410
+ <p>Parent object.</p>
1411
+ </div>
1412
+
1413
+
1414
+
1415
+ <h5>Type:</h5>
1416
+ <ul>
1417
+ <li>
1418
+
1313
1419
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
1314
1420
 
1315
1421
 
1316
- </li>
1317
- </ul>
1318
-
1422
+ </li>
1423
+ </ul>
1424
+
1425
+
1426
+
1427
+
1319
1428
 
1320
-
1321
1429
  <dl class="details">
1322
-
1323
1430
 
1324
1431
 
1325
1432
 
@@ -1329,7 +1436,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1329
1436
  <dt class="inherited-from">Inherited From:</dt>
1330
1437
  <dd class="inherited-from"><ul class="dummy"><li>
1331
1438
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
1332
- </li></dd>
1439
+ </li></ul></dd>
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1333
1448
 
1334
1449
 
1335
1450
 
@@ -1345,7 +1460,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1345
1460
 
1346
1461
  <dt class="tag-source">Source:</dt>
1347
1462
  <dd class="tag-source"><ul class="dummy"><li>
1348
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1420">line 1420</a>
1463
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
1349
1464
  </li></ul></dd>
1350
1465
 
1351
1466
 
@@ -1357,40 +1472,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1357
1472
  </dl>
1358
1473
 
1359
1474
 
1360
-
1361
1475
 
1362
-
1363
- </dd>
1476
+
1477
+
1364
1478
 
1365
1479
 
1366
1480
 
1367
- <dt>
1368
- <h4 class="name" id="repeated"><span class="type-signature"></span>repeated<span class="type-signature"> :boolean</span></h4>
1481
+ <h4 class="name" id="repeated"><span class="type-signature"></span>repeated<span class="type-signature"> :boolean</span></h4>
1369
1482
 
1370
-
1371
- </dt>
1372
- <dd>
1373
-
1374
- <div class="description">
1375
- <p>Message field repeated flag.</p>
1376
- </div>
1377
-
1378
1483
 
1379
-
1380
- <h5>Type:</h5>
1381
- <ul>
1382
- <li>
1383
-
1484
+
1485
+
1486
+ <div class="description">
1487
+ <p>Message field repeated flag.</p>
1488
+ </div>
1489
+
1490
+
1491
+
1492
+ <h5>Type:</h5>
1493
+ <ul>
1494
+ <li>
1495
+
1384
1496
  <span class="param-type">boolean</span>
1385
1497
 
1386
1498
 
1387
- </li>
1388
- </ul>
1389
-
1499
+ </li>
1500
+ </ul>
1501
+
1502
+
1503
+
1504
+
1390
1505
 
1391
-
1392
1506
  <dl class="details">
1393
-
1394
1507
 
1395
1508
 
1396
1509
 
@@ -1400,7 +1513,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1400
1513
  <dt class="inherited-from">Inherited From:</dt>
1401
1514
  <dd class="inherited-from"><ul class="dummy"><li>
1402
1515
  <a href="ProtoBuf.Reflect.Message.Field.html#repeated">ProtoBuf.Reflect.Message.Field#repeated</a>
1403
- </li></dd>
1516
+ </li></ul></dd>
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1404
1525
 
1405
1526
 
1406
1527
 
@@ -1416,7 +1537,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1416
1537
 
1417
1538
  <dt class="tag-source">Source:</dt>
1418
1539
  <dd class="tag-source"><ul class="dummy"><li>
1419
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3307">line 3307</a>
1540
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3332">line 3332</a>
1420
1541
  </li></ul></dd>
1421
1542
 
1422
1543
 
@@ -1428,40 +1549,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1428
1549
  </dl>
1429
1550
 
1430
1551
 
1431
-
1432
1552
 
1433
-
1434
- </dd>
1553
+
1554
+
1435
1555
 
1436
1556
 
1437
1557
 
1438
- <dt>
1439
- <h4 class="name" id="required"><span class="type-signature"></span>required<span class="type-signature"> :boolean</span></h4>
1558
+ <h4 class="name" id="required"><span class="type-signature"></span>required<span class="type-signature"> :boolean</span></h4>
1440
1559
 
1441
-
1442
- </dt>
1443
- <dd>
1444
-
1445
- <div class="description">
1446
- <p>Message field required flag.</p>
1447
- </div>
1448
-
1449
1560
 
1450
-
1451
- <h5>Type:</h5>
1452
- <ul>
1453
- <li>
1454
-
1561
+
1562
+
1563
+ <div class="description">
1564
+ <p>Message field required flag.</p>
1565
+ </div>
1566
+
1567
+
1568
+
1569
+ <h5>Type:</h5>
1570
+ <ul>
1571
+ <li>
1572
+
1455
1573
  <span class="param-type">boolean</span>
1456
1574
 
1457
1575
 
1458
- </li>
1459
- </ul>
1460
-
1576
+ </li>
1577
+ </ul>
1578
+
1579
+
1580
+
1581
+
1461
1582
 
1462
-
1463
1583
  <dl class="details">
1464
-
1465
1584
 
1466
1585
 
1467
1586
 
@@ -1471,7 +1590,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1471
1590
  <dt class="inherited-from">Inherited From:</dt>
1472
1591
  <dd class="inherited-from"><ul class="dummy"><li>
1473
1592
  <a href="ProtoBuf.Reflect.Message.Field.html#required">ProtoBuf.Reflect.Message.Field#required</a>
1474
- </li></dd>
1593
+ </li></ul></dd>
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1475
1602
 
1476
1603
 
1477
1604
 
@@ -1487,7 +1614,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1487
1614
 
1488
1615
  <dt class="tag-source">Source:</dt>
1489
1616
  <dd class="tag-source"><ul class="dummy"><li>
1490
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3300">line 3300</a>
1617
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3325">line 3325</a>
1491
1618
  </li></ul></dd>
1492
1619
 
1493
1620
 
@@ -1499,43 +1626,41 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1499
1626
  </dl>
1500
1627
 
1501
1628
 
1502
-
1503
1629
 
1504
-
1505
- </dd>
1630
+
1631
+
1506
1632
 
1507
1633
 
1508
1634
 
1509
- <dt>
1510
- <h4 class="name" id="resolvedType"><span class="type-signature"></span>resolvedType<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>|null</span></h4>
1635
+ <h4 class="name" id="resolvedType"><span class="type-signature"></span>resolvedType<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>|null</span></h4>
1511
1636
 
1512
-
1513
- </dt>
1514
- <dd>
1515
-
1516
- <div class="description">
1517
- <p>Resolved type reference inside the global namespace.</p>
1518
- </div>
1519
-
1520
1637
 
1521
-
1522
- <h5>Type:</h5>
1523
- <ul>
1524
- <li>
1525
-
1638
+
1639
+
1640
+ <div class="description">
1641
+ <p>Resolved type reference inside the global namespace.</p>
1642
+ </div>
1643
+
1644
+
1645
+
1646
+ <h5>Type:</h5>
1647
+ <ul>
1648
+ <li>
1649
+
1526
1650
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
1527
1651
  |
1528
1652
 
1529
1653
  <span class="param-type">null</span>
1530
1654
 
1531
1655
 
1532
- </li>
1533
- </ul>
1534
-
1656
+ </li>
1657
+ </ul>
1658
+
1659
+
1660
+
1661
+
1535
1662
 
1536
-
1537
1663
  <dl class="details">
1538
-
1539
1664
 
1540
1665
 
1541
1666
 
@@ -1545,7 +1670,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1545
1670
  <dt class="inherited-from">Inherited From:</dt>
1546
1671
  <dd class="inherited-from"><ul class="dummy"><li>
1547
1672
  <a href="ProtoBuf.Reflect.Message.Field.html#resolvedType">ProtoBuf.Reflect.Message.Field#resolvedType</a>
1548
- </li></dd>
1673
+ </li></ul></dd>
1674
+
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+
1549
1682
 
1550
1683
 
1551
1684
 
@@ -1561,7 +1694,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1561
1694
 
1562
1695
  <dt class="tag-source">Source:</dt>
1563
1696
  <dd class="tag-source"><ul class="dummy"><li>
1564
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3337">line 3337</a>
1697
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3362">line 3362</a>
1565
1698
  </li></ul></dd>
1566
1699
 
1567
1700
 
@@ -1573,40 +1706,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1573
1706
  </dl>
1574
1707
 
1575
1708
 
1576
-
1577
1709
 
1578
-
1579
- </dd>
1710
+
1711
+
1580
1712
 
1581
1713
 
1582
1714
 
1583
- <dt>
1584
- <h4 class="name" id="syntax"><span class="type-signature"></span>syntax<span class="type-signature"> :string</span></h4>
1715
+ <h4 class="name" id="syntax"><span class="type-signature"></span>syntax<span class="type-signature"> :string</span></h4>
1585
1716
 
1586
-
1587
- </dt>
1588
- <dd>
1589
-
1590
- <div class="description">
1591
- <p>Syntax level of this definition (e.g., proto3).</p>
1592
- </div>
1593
-
1594
1717
 
1595
-
1596
- <h5>Type:</h5>
1597
- <ul>
1598
- <li>
1599
-
1718
+
1719
+
1720
+ <div class="description">
1721
+ <p>Syntax level of this definition (e.g., proto3).</p>
1722
+ </div>
1723
+
1724
+
1725
+
1726
+ <h5>Type:</h5>
1727
+ <ul>
1728
+ <li>
1729
+
1600
1730
  <span class="param-type">string</span>
1601
1731
 
1602
1732
 
1603
- </li>
1604
- </ul>
1605
-
1733
+ </li>
1734
+ </ul>
1735
+
1736
+
1737
+
1738
+
1606
1739
 
1607
-
1608
1740
  <dl class="details">
1609
-
1610
1741
 
1611
1742
 
1612
1743
 
@@ -1616,7 +1747,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1616
1747
  <dt class="inherited-from">Inherited From:</dt>
1617
1748
  <dd class="inherited-from"><ul class="dummy"><li>
1618
1749
  <a href="ProtoBuf.Reflect.Message.Field.html#syntax">ProtoBuf.Reflect.Message.Field#syntax</a>
1619
- </li></dd>
1750
+ </li></ul></dd>
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1620
1759
 
1621
1760
 
1622
1761
 
@@ -1632,7 +1771,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1632
1771
 
1633
1772
  <dt class="tag-source">Source:</dt>
1634
1773
  <dd class="tag-source"><ul class="dummy"><li>
1635
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3373">line 3373</a>
1774
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3398">line 3398</a>
1636
1775
  </li></ul></dd>
1637
1776
 
1638
1777
 
@@ -1644,44 +1783,42 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1644
1783
  </dl>
1645
1784
 
1646
1785
 
1647
-
1648
1786
 
1649
-
1650
- </dd>
1787
+
1788
+
1651
1789
 
1652
1790
 
1653
1791
 
1654
- <dt>
1655
- <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :string|Object</span></h4>
1792
+ <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :string|Object</span></h4>
1656
1793
 
1657
-
1658
- </dt>
1659
- <dd>
1660
-
1661
- <div class="description">
1662
- <p>Message field type. Type reference string if unresolved, protobuf type if
1794
+
1795
+
1796
+
1797
+ <div class="description">
1798
+ <p>Message field type. Type reference string if unresolved, protobuf type if
1663
1799
  resolved. In a map field, this is the value type.</p>
1664
- </div>
1665
-
1800
+ </div>
1666
1801
 
1667
-
1668
- <h5>Type:</h5>
1669
- <ul>
1670
- <li>
1671
-
1802
+
1803
+
1804
+ <h5>Type:</h5>
1805
+ <ul>
1806
+ <li>
1807
+
1672
1808
  <span class="param-type">string</span>
1673
1809
  |
1674
1810
 
1675
1811
  <span class="param-type">Object</span>
1676
1812
 
1677
1813
 
1678
- </li>
1679
- </ul>
1680
-
1814
+ </li>
1815
+ </ul>
1816
+
1817
+
1818
+
1819
+
1681
1820
 
1682
-
1683
1821
  <dl class="details">
1684
-
1685
1822
 
1686
1823
 
1687
1824
 
@@ -1691,7 +1828,15 @@ resolved. In a map field, this is the value type.</p>
1691
1828
  <dt class="inherited-from">Inherited From:</dt>
1692
1829
  <dd class="inherited-from"><ul class="dummy"><li>
1693
1830
  <a href="ProtoBuf.Reflect.Message.Field.html#type">ProtoBuf.Reflect.Message.Field#type</a>
1694
- </li></dd>
1831
+ </li></ul></dd>
1832
+
1833
+
1834
+
1835
+
1836
+
1837
+
1838
+
1839
+
1695
1840
 
1696
1841
 
1697
1842
 
@@ -1707,7 +1852,7 @@ resolved. In a map field, this is the value type.</p>
1707
1852
 
1708
1853
  <dt class="tag-source">Source:</dt>
1709
1854
  <dd class="tag-source"><ul class="dummy"><li>
1710
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3330">line 3330</a>
1855
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3355">line 3355</a>
1711
1856
  </li></ul></dd>
1712
1857
 
1713
1858
 
@@ -1719,40 +1864,54 @@ resolved. In a map field, this is the value type.</p>
1719
1864
  </dl>
1720
1865
 
1721
1866
 
1722
-
1723
1867
 
1724
-
1725
- </dd>
1726
1868
 
1727
- </dl>
1869
+
1870
+
1871
+
1728
1872
 
1729
1873
 
1730
1874
 
1731
1875
  <h3 class="subsection-title">Methods</h3>
1732
1876
 
1733
- <dl>
1877
+
1734
1878
 
1735
- <dt>
1736
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1737
1879
 
1738
1880
 
1739
- </dt>
1740
- <dd>
1741
1881
 
1742
-
1743
- <div class="description">
1744
- <p>Builds the field.</p>
1745
- </div>
1746
-
1882
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1747
1883
 
1748
1884
 
1749
1885
 
1886
+
1887
+
1888
+ <div class="description">
1889
+ <p>Builds this type.</p>
1890
+ </div>
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+
1903
+
1904
+ <dl class="details">
1905
+
1750
1906
 
1751
1907
 
1752
1908
 
1753
1909
 
1754
1910
 
1755
- <dl class="details">
1911
+ <dt class="inherited-from">Inherited From:</dt>
1912
+ <dd class="inherited-from"><ul class="dummy"><li>
1913
+ <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
1914
+ </li></ul></dd>
1756
1915
 
1757
1916
 
1758
1917
 
@@ -1760,10 +1919,7 @@ resolved. In a map field, this is the value type.</p>
1760
1919
 
1761
1920
 
1762
1921
 
1763
- <dt class="inherited-from">Inherited From:</dt>
1764
- <dd class="inherited-from"><ul class="dummy"><li>
1765
- <a href="ProtoBuf.Reflect.Message.Field.html#build">ProtoBuf.Reflect.Message.Field#build</a>
1766
- </li></dd>
1922
+
1767
1923
 
1768
1924
 
1769
1925
 
@@ -1779,7 +1935,7 @@ resolved. In a map field, this is the value type.</p>
1779
1935
 
1780
1936
  <dt class="tag-source">Source:</dt>
1781
1937
  <dd class="tag-source"><ul class="dummy"><li>
1782
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3413">line 3413</a>
1938
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
1783
1939
  </li></ul></dd>
1784
1940
 
1785
1941
 
@@ -1791,43 +1947,74 @@ resolved. In a map field, this is the value type.</p>
1791
1947
  </dl>
1792
1948
 
1793
1949
 
1794
-
1795
1950
 
1796
-
1797
1951
 
1798
-
1799
1952
 
1800
-
1801
1953
 
1802
-
1803
1954
 
1804
-
1955
+
1956
+
1957
+
1958
+
1959
+ <h5>Throws:</h5>
1960
+
1961
+
1962
+
1963
+ <dl>
1964
+ <dt>
1965
+ <div class="param-desc">
1966
+ <p>If this type cannot be built directly</p>
1967
+ </div>
1968
+ </dt>
1969
+ <dd></dd>
1970
+ <dt>
1971
+ <dl>
1972
+ <dt>
1973
+ Type
1974
+ </dt>
1975
+ <dd>
1976
+
1977
+ <span class="param-type">Error</span>
1978
+
1979
+
1980
+ </dd>
1981
+ </dl>
1982
+ </dt>
1983
+ <dd></dd>
1984
+ </dl>
1985
+
1805
1986
 
1806
1987
 
1807
- </dd>
1988
+
1989
+
1990
+
1991
+
1808
1992
 
1809
1993
 
1810
1994
 
1811
- <dt>
1812
- <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1813
1995
 
1814
1996
 
1815
- </dt>
1816
- <dd>
1817
1997
 
1818
-
1819
- <div class="description">
1820
- <p>Calculates the length of this field's value on the network level.</p>
1821
- </div>
1822
-
1998
+ <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1823
1999
 
1824
2000
 
1825
2001
 
1826
-
1827
2002
 
2003
+
2004
+ <div class="description">
2005
+ <p>Calculates the length of this field's value on the network level.</p>
2006
+ </div>
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+ <h5>Parameters:</h5>
1828
2017
 
1829
- <h5>Parameters:</h5>
1830
-
1831
2018
 
1832
2019
  <table class="params">
1833
2020
  <thead>
@@ -1896,11 +2083,13 @@ resolved. In a map field, this is the value type.</p>
1896
2083
 
1897
2084
  </tbody>
1898
2085
  </table>
1899
-
1900
2086
 
1901
-
2087
+
2088
+
2089
+
2090
+
2091
+
1902
2092
  <dl class="details">
1903
-
1904
2093
 
1905
2094
 
1906
2095
 
@@ -1910,7 +2099,15 @@ resolved. In a map field, this is the value type.</p>
1910
2099
  <dt class="inherited-from">Inherited From:</dt>
1911
2100
  <dd class="inherited-from"><ul class="dummy"><li>
1912
2101
  <a href="ProtoBuf.Reflect.Message.Field.html#calculate">ProtoBuf.Reflect.Message.Field#calculate</a>
1913
- </li></dd>
2102
+ </li></ul></dd>
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+
1914
2111
 
1915
2112
 
1916
2113
 
@@ -1926,7 +2123,7 @@ resolved. In a map field, this is the value type.</p>
1926
2123
 
1927
2124
  <dt class="tag-source">Source:</dt>
1928
2125
  <dd class="tag-source"><ul class="dummy"><li>
1929
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3610">line 3610</a>
2126
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3635">line 3635</a>
1930
2127
  </li></ul></dd>
1931
2128
 
1932
2129
 
@@ -1938,20 +2135,20 @@ resolved. In a map field, this is the value type.</p>
1938
2135
  </dl>
1939
2136
 
1940
2137
 
1941
-
1942
2138
 
1943
-
1944
2139
 
1945
-
1946
2140
 
1947
-
1948
2141
 
1949
-
1950
2142
 
1951
-
1952
- <h5>Returns:</h5>
1953
-
1954
-
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+ <h5>Returns:</h5>
2150
+
2151
+
1955
2152
  <div class="param-desc">
1956
2153
  <p>Byte length</p>
1957
2154
  </div>
@@ -1970,33 +2167,35 @@ resolved. In a map field, this is the value type.</p>
1970
2167
  </dd>
1971
2168
  </dl>
1972
2169
 
1973
-
1974
-
1975
2170
 
1976
- </dd>
2171
+
2172
+
1977
2173
 
1978
2174
 
1979
2175
 
1980
- <dt>
1981
- <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(wireType, buffer, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
1982
2176
 
1983
2177
 
1984
- </dt>
1985
- <dd>
1986
2178
 
1987
-
1988
- <div class="description">
1989
- <p>Decode the field value from the specified buffer.</p>
1990
- </div>
1991
-
2179
+ <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(wireType, buffer, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
1992
2180
 
1993
2181
 
1994
2182
 
1995
-
1996
2183
 
2184
+
2185
+ <div class="description">
2186
+ <p>Decode the field value from the specified buffer.</p>
2187
+ </div>
2188
+
2189
+
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+
2197
+ <h5>Parameters:</h5>
1997
2198
 
1998
- <h5>Parameters:</h5>
1999
-
2000
2199
 
2001
2200
  <table class="params">
2002
2201
  <thead>
@@ -2116,11 +2315,13 @@ resolved. In a map field, this is the value type.</p>
2116
2315
 
2117
2316
  </tbody>
2118
2317
  </table>
2119
-
2120
2318
 
2121
-
2319
+
2320
+
2321
+
2322
+
2323
+
2122
2324
  <dl class="details">
2123
-
2124
2325
 
2125
2326
 
2126
2327
 
@@ -2130,7 +2331,15 @@ resolved. In a map field, this is the value type.</p>
2130
2331
  <dt class="inherited-from">Inherited From:</dt>
2131
2332
  <dd class="inherited-from"><ul class="dummy"><li>
2132
2333
  <a href="ProtoBuf.Reflect.Message.Field.html#decode">ProtoBuf.Reflect.Message.Field#decode</a>
2133
- </li></dd>
2334
+ </li></ul></dd>
2335
+
2336
+
2337
+
2338
+
2339
+
2340
+
2341
+
2342
+
2134
2343
 
2135
2344
 
2136
2345
 
@@ -2146,7 +2355,7 @@ resolved. In a map field, this is the value type.</p>
2146
2355
 
2147
2356
  <dt class="tag-source">Source:</dt>
2148
2357
  <dd class="tag-source"><ul class="dummy"><li>
2149
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3668">line 3668</a>
2358
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3693">line 3693</a>
2150
2359
  </li></ul></dd>
2151
2360
 
2152
2361
 
@@ -2158,25 +2367,26 @@ resolved. In a map field, this is the value type.</p>
2158
2367
  </dl>
2159
2368
 
2160
2369
 
2161
-
2162
2370
 
2163
-
2164
2371
 
2165
-
2166
2372
 
2167
-
2168
2373
 
2169
-
2170
- <h5>Throws:</h5>
2171
-
2172
-
2374
+
2375
+
2376
+
2377
+
2378
+
2379
+ <h5>Throws:</h5>
2380
+
2381
+
2173
2382
 
2174
2383
  <dl>
2175
2384
  <dt>
2176
2385
  <div class="param-desc">
2177
- If the field cannot be decoded
2386
+ <p>If the field cannot be decoded</p>
2178
2387
  </div>
2179
2388
  </dt>
2389
+ <dd></dd>
2180
2390
  <dt>
2181
2391
  <dl>
2182
2392
  <dt>
@@ -2190,15 +2400,16 @@ resolved. In a map field, this is the value type.</p>
2190
2400
  </dd>
2191
2401
  </dl>
2192
2402
  </dt>
2403
+ <dd></dd>
2193
2404
  </dl>
2194
2405
 
2195
2406
 
2196
-
2197
-
2198
2407
 
2199
- <h5>Returns:</h5>
2200
-
2201
-
2408
+
2409
+
2410
+ <h5>Returns:</h5>
2411
+
2412
+
2202
2413
  <div class="param-desc">
2203
2414
  <p>Decoded value: array for packed repeated fields, [key, value] for
2204
2415
  map fields, or an individual value otherwise.</p>
@@ -2218,33 +2429,35 @@ resolved. In a map field, this is the value type.</p>
2218
2429
  </dd>
2219
2430
  </dl>
2220
2431
 
2221
-
2222
-
2223
2432
 
2224
- </dd>
2433
+
2434
+
2225
2435
 
2226
2436
 
2227
2437
 
2228
- <dt>
2229
- <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
2230
2438
 
2231
2439
 
2232
- </dt>
2233
- <dd>
2234
2440
 
2235
-
2236
- <div class="description">
2237
- <p>Encodes the specified field value to the specified buffer.</p>
2238
- </div>
2239
-
2441
+ <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
2240
2442
 
2241
2443
 
2242
2444
 
2243
-
2244
2445
 
2446
+
2447
+ <div class="description">
2448
+ <p>Encodes the specified field value to the specified buffer.</p>
2449
+ </div>
2450
+
2451
+
2452
+
2453
+
2454
+
2455
+
2456
+
2457
+
2458
+
2459
+ <h5>Parameters:</h5>
2245
2460
 
2246
- <h5>Parameters:</h5>
2247
-
2248
2461
 
2249
2462
  <table class="params">
2250
2463
  <thead>
@@ -2336,10 +2549,23 @@ resolved. In a map field, this is the value type.</p>
2336
2549
 
2337
2550
  </tbody>
2338
2551
  </table>
2552
+
2553
+
2554
+
2555
+
2556
+
2557
+
2558
+ <dl class="details">
2559
+
2339
2560
 
2340
2561
 
2341
2562
 
2342
- <dl class="details">
2563
+
2564
+
2565
+ <dt class="inherited-from">Inherited From:</dt>
2566
+ <dd class="inherited-from"><ul class="dummy"><li>
2567
+ <a href="ProtoBuf.Reflect.Message.Field.html#encode">ProtoBuf.Reflect.Message.Field#encode</a>
2568
+ </li></ul></dd>
2343
2569
 
2344
2570
 
2345
2571
 
@@ -2347,10 +2573,7 @@ resolved. In a map field, this is the value type.</p>
2347
2573
 
2348
2574
 
2349
2575
 
2350
- <dt class="inherited-from">Inherited From:</dt>
2351
- <dd class="inherited-from"><ul class="dummy"><li>
2352
- <a href="ProtoBuf.Reflect.Message.Field.html#encode">ProtoBuf.Reflect.Message.Field#encode</a>
2353
- </li></dd>
2576
+
2354
2577
 
2355
2578
 
2356
2579
 
@@ -2366,7 +2589,7 @@ resolved. In a map field, this is the value type.</p>
2366
2589
 
2367
2590
  <dt class="tag-source">Source:</dt>
2368
2591
  <dd class="tag-source"><ul class="dummy"><li>
2369
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3536">line 3536</a>
2592
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3561">line 3561</a>
2370
2593
  </li></ul></dd>
2371
2594
 
2372
2595
 
@@ -2378,25 +2601,26 @@ resolved. In a map field, this is the value type.</p>
2378
2601
  </dl>
2379
2602
 
2380
2603
 
2381
-
2382
2604
 
2383
-
2384
2605
 
2385
-
2386
2606
 
2387
-
2388
2607
 
2389
-
2390
- <h5>Throws:</h5>
2391
-
2392
-
2608
+
2609
+
2610
+
2611
+
2612
+
2613
+ <h5>Throws:</h5>
2614
+
2615
+
2393
2616
 
2394
2617
  <dl>
2395
2618
  <dt>
2396
2619
  <div class="param-desc">
2397
- If the field cannot be encoded
2620
+ <p>If the field cannot be encoded</p>
2398
2621
  </div>
2399
2622
  </dt>
2623
+ <dd></dd>
2400
2624
  <dt>
2401
2625
  <dl>
2402
2626
  <dt>
@@ -2410,15 +2634,16 @@ resolved. In a map field, this is the value type.</p>
2410
2634
  </dd>
2411
2635
  </dl>
2412
2636
  </dt>
2637
+ <dd></dd>
2413
2638
  </dl>
2414
2639
 
2415
2640
 
2416
-
2417
-
2418
-
2419
- <h5>Returns:</h5>
2420
2641
 
2421
-
2642
+
2643
+
2644
+ <h5>Returns:</h5>
2645
+
2646
+
2422
2647
  <div class="param-desc">
2423
2648
  <p>The ByteBuffer for chaining</p>
2424
2649
  </div>
@@ -2437,35 +2662,38 @@ resolved. In a map field, this is the value type.</p>
2437
2662
  </dd>
2438
2663
  </dl>
2439
2664
 
2440
-
2441
-
2442
2665
 
2443
- </dd>
2666
+
2667
+
2444
2668
 
2445
2669
 
2446
2670
 
2447
- <dt>
2448
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2449
2671
 
2450
2672
 
2451
- </dt>
2452
- <dd>
2453
2673
 
2454
-
2455
- <div class="description">
2456
- <p>Returns the fully qualified name of this object.</p>
2457
- </div>
2458
-
2674
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2459
2675
 
2460
2676
 
2461
2677
 
2462
-
2463
2678
 
2464
-
2465
2679
 
2466
-
2680
+ <div class="description">
2681
+ <p>Returns the fully qualified name of this object.</p>
2682
+ </div>
2683
+
2684
+
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+
2695
+
2467
2696
  <dl class="details">
2468
-
2469
2697
 
2470
2698
 
2471
2699
 
@@ -2475,7 +2703,15 @@ resolved. In a map field, this is the value type.</p>
2475
2703
  <dt class="inherited-from">Inherited From:</dt>
2476
2704
  <dd class="inherited-from"><ul class="dummy"><li>
2477
2705
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
2478
- </li></dd>
2706
+ </li></ul></dd>
2707
+
2708
+
2709
+
2710
+
2711
+
2712
+
2713
+
2714
+
2479
2715
 
2480
2716
 
2481
2717
 
@@ -2491,7 +2727,7 @@ resolved. In a map field, this is the value type.</p>
2491
2727
 
2492
2728
  <dt class="tag-source">Source:</dt>
2493
2729
  <dd class="tag-source"><ul class="dummy"><li>
2494
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1448">line 1448</a>
2730
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
2495
2731
  </li></ul></dd>
2496
2732
 
2497
2733
 
@@ -2503,20 +2739,20 @@ resolved. In a map field, this is the value type.</p>
2503
2739
  </dl>
2504
2740
 
2505
2741
 
2506
-
2507
2742
 
2508
-
2509
2743
 
2510
-
2511
2744
 
2512
-
2513
2745
 
2514
-
2515
2746
 
2516
-
2517
- <h5>Returns:</h5>
2518
-
2519
-
2747
+
2748
+
2749
+
2750
+
2751
+
2752
+
2753
+ <h5>Returns:</h5>
2754
+
2755
+
2520
2756
  <div class="param-desc">
2521
2757
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
2522
2758
  </div>
@@ -2535,34 +2771,36 @@ resolved. In a map field, this is the value type.</p>
2535
2771
  </dd>
2536
2772
  </dl>
2537
2773
 
2538
-
2539
-
2540
2774
 
2541
- </dd>
2775
+
2776
+
2542
2777
 
2543
2778
 
2544
2779
 
2545
- <dt>
2546
- <h4 class="name" id="hasWirePresence"><span class="type-signature"></span>hasWirePresence<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
2547
2780
 
2548
2781
 
2549
- </dt>
2550
- <dd>
2782
+
2783
+ <h4 class="name" id="hasWirePresence"><span class="type-signature"></span>hasWirePresence<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
2551
2784
 
2552
2785
 
2553
- <div class="description">
2554
- <p>Determines whether the field will have a presence on the wire given its
2786
+
2787
+
2788
+
2789
+ <div class="description">
2790
+ <p>Determines whether the field will have a presence on the wire given its
2555
2791
  value.</p>
2556
- </div>
2557
-
2792
+ </div>
2793
+
2794
+
2558
2795
 
2559
-
2560
2796
 
2561
-
2562
2797
 
2798
+
2799
+
2800
+
2801
+
2802
+ <h5>Parameters:</h5>
2563
2803
 
2564
- <h5>Parameters:</h5>
2565
-
2566
2804
 
2567
2805
  <table class="params">
2568
2806
  <thead>
@@ -2631,11 +2869,13 @@ value.</p>
2631
2869
 
2632
2870
  </tbody>
2633
2871
  </table>
2634
-
2635
2872
 
2636
-
2873
+
2874
+
2875
+
2876
+
2877
+
2637
2878
  <dl class="details">
2638
-
2639
2879
 
2640
2880
 
2641
2881
 
@@ -2645,7 +2885,15 @@ value.</p>
2645
2885
  <dt class="inherited-from">Inherited From:</dt>
2646
2886
  <dd class="inherited-from"><ul class="dummy"><li>
2647
2887
  <a href="ProtoBuf.Reflect.Message.Field.html#hasWirePresence">ProtoBuf.Reflect.Message.Field#hasWirePresence</a>
2648
- </li></dd>
2888
+ </li></ul></dd>
2889
+
2890
+
2891
+
2892
+
2893
+
2894
+
2895
+
2896
+
2649
2897
 
2650
2898
 
2651
2899
 
@@ -2661,7 +2909,7 @@ value.</p>
2661
2909
 
2662
2910
  <dt class="tag-source">Source:</dt>
2663
2911
  <dd class="tag-source"><ul class="dummy"><li>
2664
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3484">line 3484</a>
2912
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3509">line 3509</a>
2665
2913
  </li></ul></dd>
2666
2914
 
2667
2915
 
@@ -2673,20 +2921,20 @@ value.</p>
2673
2921
  </dl>
2674
2922
 
2675
2923
 
2676
-
2677
2924
 
2678
-
2679
2925
 
2680
-
2681
2926
 
2682
-
2683
2927
 
2684
-
2685
2928
 
2686
-
2687
- <h5>Returns:</h5>
2688
-
2689
-
2929
+
2930
+
2931
+
2932
+
2933
+
2934
+
2935
+ <h5>Returns:</h5>
2936
+
2937
+
2690
2938
  <div class="param-desc">
2691
2939
  <p>Whether the field will be present on the wire</p>
2692
2940
  </div>
@@ -2705,33 +2953,35 @@ value.</p>
2705
2953
  </dd>
2706
2954
  </dl>
2707
2955
 
2708
-
2709
-
2710
2956
 
2711
- </dd>
2957
+
2958
+
2712
2959
 
2713
2960
 
2714
2961
 
2715
- <dt>
2716
- <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
2717
2962
 
2718
2963
 
2719
- </dt>
2720
- <dd>
2721
2964
 
2722
-
2723
- <div class="description">
2724
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2725
- </div>
2726
-
2965
+ <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
2727
2966
 
2728
2967
 
2729
2968
 
2730
-
2731
2969
 
2970
+
2971
+ <div class="description">
2972
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2973
+ </div>
2974
+
2975
+
2976
+
2977
+
2978
+
2979
+
2980
+
2981
+
2982
+
2983
+ <h5>Parameters:</h5>
2732
2984
 
2733
- <h5>Parameters:</h5>
2734
-
2735
2985
 
2736
2986
  <table class="params">
2737
2987
  <thead>
@@ -2789,11 +3039,13 @@ value.</p>
2789
3039
 
2790
3040
  </tbody>
2791
3041
  </table>
2792
-
2793
3042
 
2794
-
3043
+
3044
+
3045
+
3046
+
3047
+
2795
3048
  <dl class="details">
2796
-
2797
3049
 
2798
3050
 
2799
3051
 
@@ -2803,7 +3055,15 @@ value.</p>
2803
3055
  <dt class="inherited-from">Inherited From:</dt>
2804
3056
  <dd class="inherited-from"><ul class="dummy"><li>
2805
3057
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
2806
- </li></dd>
3058
+ </li></ul></dd>
3059
+
3060
+
3061
+
3062
+
3063
+
3064
+
3065
+
3066
+
2807
3067
 
2808
3068
 
2809
3069
 
@@ -2819,7 +3079,7 @@ value.</p>
2819
3079
 
2820
3080
  <dt class="tag-source">Source:</dt>
2821
3081
  <dd class="tag-source"><ul class="dummy"><li>
2822
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1466">line 1466</a>
3082
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
2823
3083
  </li></ul></dd>
2824
3084
 
2825
3085
 
@@ -2831,53 +3091,55 @@ value.</p>
2831
3091
  </dl>
2832
3092
 
2833
3093
 
2834
-
2835
3094
 
2836
-
2837
3095
 
2838
-
2839
3096
 
2840
-
2841
3097
 
2842
-
2843
3098
 
2844
-
2845
- <h5>Returns:</h5>
2846
-
2847
-
3099
+
3100
+
3101
+
3102
+
3103
+
3104
+
3105
+ <h5>Returns:</h5>
3106
+
3107
+
2848
3108
  <div class="param-desc">
2849
3109
  <p>String representation</p>
2850
3110
  </div>
2851
3111
 
2852
3112
 
2853
3113
 
2854
-
2855
-
2856
3114
 
2857
- </dd>
3115
+
3116
+
2858
3117
 
2859
3118
 
2860
3119
 
2861
- <dt>
2862
- <h4 class="name" id="verifyValue"><span class="type-signature"></span>verifyValue<span class="signature">(value, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
2863
3120
 
2864
3121
 
2865
- </dt>
2866
- <dd>
2867
3122
 
2868
-
2869
- <div class="description">
2870
- <p>Checks if the given value can be set for this field.</p>
2871
- </div>
2872
-
3123
+ <h4 class="name" id="verifyValue"><span class="type-signature"></span>verifyValue<span class="signature">(value, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
2873
3124
 
2874
3125
 
2875
3126
 
2876
-
2877
3127
 
3128
+
3129
+ <div class="description">
3130
+ <p>Checks if the given value can be set for this field.</p>
3131
+ </div>
3132
+
3133
+
3134
+
3135
+
3136
+
3137
+
3138
+
3139
+
3140
+
3141
+ <h5>Parameters:</h5>
2878
3142
 
2879
- <h5>Parameters:</h5>
2880
-
2881
3143
 
2882
3144
  <table class="params">
2883
3145
  <thead>
@@ -2966,11 +3228,13 @@ value.</p>
2966
3228
 
2967
3229
  </tbody>
2968
3230
  </table>
2969
-
2970
3231
 
2971
-
3232
+
3233
+
3234
+
3235
+
3236
+
2972
3237
  <dl class="details">
2973
-
2974
3238
 
2975
3239
 
2976
3240
 
@@ -2980,7 +3244,15 @@ value.</p>
2980
3244
  <dt class="inherited-from">Inherited From:</dt>
2981
3245
  <dd class="inherited-from"><ul class="dummy"><li>
2982
3246
  <a href="ProtoBuf.Reflect.Message.Field.html#verifyValue">ProtoBuf.Reflect.Message.Field#verifyValue</a>
2983
- </li></dd>
3247
+ </li></ul></dd>
3248
+
3249
+
3250
+
3251
+
3252
+
3253
+
3254
+
3255
+
2984
3256
 
2985
3257
 
2986
3258
 
@@ -2996,7 +3268,7 @@ value.</p>
2996
3268
 
2997
3269
  <dt class="tag-source">Source:</dt>
2998
3270
  <dd class="tag-source"><ul class="dummy"><li>
2999
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3436">line 3436</a>
3271
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3461">line 3461</a>
3000
3272
  </li></ul></dd>
3001
3273
 
3002
3274
 
@@ -3008,25 +3280,26 @@ value.</p>
3008
3280
  </dl>
3009
3281
 
3010
3282
 
3011
-
3012
3283
 
3013
-
3014
3284
 
3015
-
3016
3285
 
3017
-
3018
3286
 
3019
-
3020
- <h5>Throws:</h5>
3021
-
3022
-
3287
+
3288
+
3289
+
3290
+
3291
+
3292
+ <h5>Throws:</h5>
3293
+
3294
+
3023
3295
 
3024
3296
  <dl>
3025
3297
  <dt>
3026
3298
  <div class="param-desc">
3027
- If the value cannot be set for this field
3299
+ <p>If the value cannot be set for this field</p>
3028
3300
  </div>
3029
3301
  </dt>
3302
+ <dd></dd>
3030
3303
  <dt>
3031
3304
  <dl>
3032
3305
  <dt>
@@ -3040,15 +3313,16 @@ value.</p>
3040
3313
  </dd>
3041
3314
  </dl>
3042
3315
  </dt>
3316
+ <dd></dd>
3043
3317
  </dl>
3044
3318
 
3045
3319
 
3046
-
3047
-
3048
3320
 
3049
- <h5>Returns:</h5>
3050
-
3051
-
3321
+
3322
+
3323
+ <h5>Returns:</h5>
3324
+
3325
+
3052
3326
  <div class="param-desc">
3053
3327
  <p>Verified, maybe adjusted, value</p>
3054
3328
  </div>
@@ -3067,12 +3341,11 @@ value.</p>
3067
3341
  </dd>
3068
3342
  </dl>
3069
3343
 
3070
-
3071
-
3072
3344
 
3073
- </dd>
3074
3345
 
3075
- </dl>
3346
+
3347
+
3348
+
3076
3349
 
3077
3350
 
3078
3351
 
@@ -3088,13 +3361,13 @@ value.</p>
3088
3361
  </div>
3089
3362
 
3090
3363
  <nav>
3091
- <h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
3364
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
3092
3365
  </nav>
3093
3366
 
3094
- <br clear="both">
3367
+ <br class="clear">
3095
3368
 
3096
3369
  <footer>
3097
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Wed Jan 06 2016 01:34:59 GMT+0100 (Mitteleuropäische Zeit)
3370
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Fri Jan 27 2017 17:03:55 GMT+0100 (Mitteleuropäische Zeit)
3098
3371
  </footer>
3099
3372
 
3100
3373
  <script> prettyPrint(); </script>