protobufjs 3.6.0 → 3.8.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 (99) hide show
  1. package/bin/proto2js +16 -4
  2. package/bower.json +1 -1
  3. package/dist/ProtoBuf.js +645 -441
  4. package/dist/ProtoBuf.min.js +96 -96
  5. package/dist/ProtoBuf.min.js.gz +0 -0
  6. package/dist/ProtoBuf.min.map +2 -2
  7. package/dist/ProtoBuf.noparse.js +520 -357
  8. package/dist/ProtoBuf.noparse.min.js +68 -66
  9. package/dist/ProtoBuf.noparse.min.js.gz +0 -0
  10. package/dist/ProtoBuf.noparse.min.map +3 -3
  11. package/docs/ProtoBuf.Builder.Message.html +673 -135
  12. package/docs/ProtoBuf.Builder.Service.html +58 -19
  13. package/docs/ProtoBuf.Builder.html +374 -46
  14. package/docs/ProtoBuf.DotProto.Parser.html +58 -19
  15. package/docs/ProtoBuf.DotProto.Tokenizer.html +104 -19
  16. package/docs/ProtoBuf.DotProto.html +16 -10
  17. package/docs/ProtoBuf.Reflect.Enum.Value.html +207 -33
  18. package/docs/ProtoBuf.Reflect.Enum.html +318 -56
  19. package/docs/ProtoBuf.Reflect.Extension.html +53 -13
  20. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +450 -68
  21. package/docs/ProtoBuf.Reflect.Message.Field.html +454 -51
  22. package/docs/ProtoBuf.Reflect.Message.OneOf.html +1044 -0
  23. package/docs/ProtoBuf.Reflect.Message.html +378 -64
  24. package/docs/ProtoBuf.Reflect.Namespace.html +333 -51
  25. package/docs/ProtoBuf.Reflect.Service.Method.html +228 -35
  26. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +262 -41
  27. package/docs/ProtoBuf.Reflect.Service.html +318 -56
  28. package/docs/ProtoBuf.Reflect.T.html +210 -25
  29. package/docs/ProtoBuf.Reflect.html +17 -11
  30. package/docs/ProtoBuf.Util.html +59 -13
  31. package/docs/ProtoBuf.html +235 -67
  32. package/docs/ProtoBuf.js.html +648 -443
  33. package/docs/index.html +4 -2
  34. package/docs/styles/jsdoc-default.css +2 -2
  35. package/examples/protoify/.npmignore +2 -0
  36. package/examples/protoify/README.md +28 -0
  37. package/examples/protoify/index.js +147 -0
  38. package/examples/protoify/json.js +123 -0
  39. package/examples/protoify/json.json +123 -0
  40. package/examples/protoify/json.proto +30 -0
  41. package/examples/protoify/package.json +15 -0
  42. package/examples/protoify/test.js +56 -0
  43. package/examples/websocket/README.md +1 -0
  44. package/examples/websocket/package.json +1 -1
  45. package/externs/ProtoBuf.js +922 -922
  46. package/package.json +3 -3
  47. package/scripts/build.js +58 -58
  48. package/src/ProtoBuf/Builder/Message.js +107 -77
  49. package/src/ProtoBuf/Builder/Service.js +8 -5
  50. package/src/ProtoBuf/Builder.js +71 -37
  51. package/src/ProtoBuf/DotProto/Parser.js +108 -72
  52. package/src/ProtoBuf/DotProto/Tokenizer.js +17 -11
  53. package/src/ProtoBuf/Lang.js +1 -1
  54. package/src/ProtoBuf/Reflect/Enum/Value.js +3 -2
  55. package/src/ProtoBuf/Reflect/Enum.js +9 -5
  56. package/src/ProtoBuf/Reflect/Extension.js +4 -3
  57. package/src/ProtoBuf/Reflect/Message/ExtensionField.js +4 -3
  58. package/src/ProtoBuf/Reflect/Message/Field.js +45 -26
  59. package/src/ProtoBuf/Reflect/Message/OneOf.js +19 -0
  60. package/src/ProtoBuf/Reflect/Message.js +36 -19
  61. package/src/ProtoBuf/Reflect/Namespace.js +19 -15
  62. package/src/ProtoBuf/Reflect/Service/Method.js +9 -5
  63. package/src/ProtoBuf/Reflect/Service/RPCMethod.js +3 -2
  64. package/src/ProtoBuf/Reflect/Service.js +9 -5
  65. package/src/ProtoBuf/Reflect/T.js +20 -6
  66. package/src/ProtoBuf/Reflect.js +9 -0
  67. package/src/ProtoBuf/Util.js +132 -132
  68. package/src/ProtoBuf.js +15 -17
  69. package/src/google/protobuf/descriptor.json +33 -13
  70. package/tests/bench.txt +373 -373
  71. package/tests/complex.json +8 -4
  72. package/tests/custom-options.json +169 -169
  73. package/tests/extend.json +71 -71
  74. package/tests/nodeunit-browser/nodeunit.css +70 -70
  75. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  76. package/tests/oneof.proto +6 -0
  77. package/tests/options.json +32 -32
  78. package/tests/options.proto +2 -0
  79. package/tests/proto2js/Bar.json +46 -46
  80. package/tests/suite.js +83 -12
  81. package/.idea/.name +0 -1
  82. package/.idea/ProtoBuf.iml +0 -9
  83. package/.idea/dictionaries/Daniel.xml +0 -7
  84. package/.idea/encodings.xml +0 -5
  85. package/.idea/misc.xml +0 -5
  86. package/.idea/modules.xml +0 -9
  87. package/.idea/scopes/scope_settings.xml +0 -5
  88. package/.idea/vcs.xml +0 -7
  89. package/.idea/workspace.xml +0 -551
  90. package/NOTICE +0 -2
  91. package/sandbox/issue146/MyOptions.proto +0 -28
  92. package/sandbox/issue146/Sample.proto +0 -21
  93. package/sandbox/issue146/main.js +0 -3
  94. package/sandbox/issue147/enum.proto +0 -8
  95. package/sandbox/issue147/main.js +0 -3
  96. package/sandbox/issue42/innerextend.proto +0 -18
  97. package/sandbox/issue42/main.js +0 -8
  98. package/sandbox/issue42/outerextend.proto +0 -17
  99. package/v8.log +0 -3828
@@ -0,0 +1,1044 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>JSDoc: Class: OneOf</title>
6
+
7
+ <script src="scripts/prettify/prettify.js"> </script>
8
+ <script src="scripts/prettify/lang-css.js"> </script>
9
+ <!--[if lt IE 9]>
10
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
+ <![endif]-->
12
+ <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
13
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
14
+ </head>
15
+
16
+ <body>
17
+
18
+ <div id="main">
19
+
20
+ <h1 class="page-title">Class: OneOf</h1>
21
+
22
+
23
+
24
+
25
+
26
+
27
+ <section>
28
+
29
+ <header>
30
+
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
+ OneOf
35
+ </h2>
36
+
37
+
38
+ </header>
39
+
40
+ <article>
41
+ <div class="container-overview">
42
+
43
+
44
+ <dt>
45
+
46
+ <h4 class="name" id="OneOf"><span class="type-signature"></span>new OneOf<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, name)</span><span class="type-signature"></span></h4>
47
+
48
+
49
+
50
+ </dt>
51
+ <dd>
52
+
53
+
54
+ <div class="description">
55
+ <p>Constructs a new Message OneOf.</p>
56
+ </div>
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+ <h5>Parameters:</h5>
67
+
68
+
69
+ <table class="params">
70
+ <thead>
71
+ <tr>
72
+
73
+ <th>Name</th>
74
+
75
+
76
+ <th>Type</th>
77
+
78
+
79
+
80
+
81
+
82
+ <th class="last">Description</th>
83
+ </tr>
84
+ </thead>
85
+
86
+ <tbody>
87
+
88
+
89
+ <tr>
90
+
91
+ <td class="name"><code>builder</code></td>
92
+
93
+
94
+ <td class="type">
95
+
96
+
97
+ <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
98
+
99
+
100
+
101
+ </td>
102
+
103
+
104
+
105
+
106
+
107
+ <td class="description last"><p>Builder reference</p></td>
108
+ </tr>
109
+
110
+
111
+
112
+ <tr>
113
+
114
+ <td class="name"><code>message</code></td>
115
+
116
+
117
+ <td class="type">
118
+
119
+
120
+ <span class="param-type"><a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span>
121
+
122
+
123
+
124
+ </td>
125
+
126
+
127
+
128
+
129
+
130
+ <td class="description last"><p>Message reference</p></td>
131
+ </tr>
132
+
133
+
134
+
135
+ <tr>
136
+
137
+ <td class="name"><code>name</code></td>
138
+
139
+
140
+ <td class="type">
141
+
142
+
143
+ <span class="param-type">string</span>
144
+
145
+
146
+
147
+ </td>
148
+
149
+
150
+
151
+
152
+
153
+ <td class="description last"><p>OneOf name</p></td>
154
+ </tr>
155
+
156
+
157
+ </tbody>
158
+ </table>
159
+
160
+
161
+
162
+
163
+
164
+ <dl class="details">
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
+ <dt class="tag-source">Source:</dt>
190
+ <dd class="tag-source"><ul class="dummy"><li>
191
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3190">line 3190</a>
192
+ </li></ul></dd>
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+ </dl>
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+ </dd>
217
+
218
+
219
+ </div>
220
+
221
+
222
+ <h3 class="subsection-title">Extends</h3>
223
+
224
+
225
+
226
+
227
+ <ul>
228
+ <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
229
+ </ul>
230
+
231
+
232
+
233
+
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+ <h3 class="subsection-title">Members</h3>
244
+
245
+ <dl>
246
+
247
+ <dt>
248
+ <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>
249
+
250
+
251
+ </dt>
252
+ <dd>
253
+
254
+ <div class="description">
255
+ <p>Builder reference.</p>
256
+ </div>
257
+
258
+
259
+
260
+ <h5>Type:</h5>
261
+ <ul>
262
+ <li>
263
+
264
+ <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
265
+
266
+
267
+ </li>
268
+ </ul>
269
+
270
+
271
+
272
+
273
+
274
+ <dl class="details">
275
+
276
+
277
+
278
+
279
+
280
+
281
+ <dt class="inherited-from">Inherited From:</dt>
282
+ <dd class="inherited-from"><ul class="dummy"><li>
283
+ <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
284
+ </li></dd>
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+ <dt class="tag-source">Source:</dt>
305
+ <dd class="tag-source"><ul class="dummy"><li>
306
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
307
+ </li></ul></dd>
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+ </dl>
316
+
317
+
318
+
319
+
320
+
321
+ </dd>
322
+
323
+
324
+
325
+ <dt>
326
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
327
+
328
+
329
+ </dt>
330
+ <dd>
331
+
332
+ <div class="description">
333
+ <p>Fully qualified class name</p>
334
+ </div>
335
+
336
+
337
+
338
+ <h5>Type:</h5>
339
+ <ul>
340
+ <li>
341
+
342
+ <span class="param-type">string</span>
343
+
344
+
345
+ </li>
346
+ </ul>
347
+
348
+
349
+
350
+
351
+
352
+ <dl class="details">
353
+
354
+
355
+
356
+
357
+
358
+
359
+ <dt class="inherited-from">Inherited From:</dt>
360
+ <dd class="inherited-from"><ul class="dummy"><li>
361
+ <a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
362
+ </li></dd>
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+ <dt class="tag-source">Source:</dt>
383
+ <dd class="tag-source"><ul class="dummy"><li>
384
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1373">line 1373</a>
385
+ </li></ul></dd>
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+ </dl>
394
+
395
+
396
+
397
+
398
+
399
+ </dd>
400
+
401
+
402
+
403
+ <dt>
404
+ <h4 class="name" id="fields"><span class="type-signature">(non-null) </span>fields<span class="type-signature"> :Array.&lt;!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span></h4>
405
+
406
+
407
+ </dt>
408
+ <dd>
409
+
410
+ <div class="description">
411
+ <p>Enclosed fields.</p>
412
+ </div>
413
+
414
+
415
+
416
+ <h5>Type:</h5>
417
+ <ul>
418
+ <li>
419
+
420
+ <span class="param-type">Array.&lt;!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span>
421
+
422
+
423
+ </li>
424
+ </ul>
425
+
426
+
427
+
428
+
429
+
430
+ <dl class="details">
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
+ <dt class="tag-source">Source:</dt>
456
+ <dd class="tag-source"><ul class="dummy"><li>
457
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3198">line 3198</a>
458
+ </li></ul></dd>
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+ </dl>
467
+
468
+
469
+
470
+
471
+
472
+ </dd>
473
+
474
+
475
+
476
+ <dt>
477
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
478
+
479
+
480
+ </dt>
481
+ <dd>
482
+
483
+ <div class="description">
484
+ <p>Object name in namespace.</p>
485
+ </div>
486
+
487
+
488
+
489
+ <h5>Type:</h5>
490
+ <ul>
491
+ <li>
492
+
493
+ <span class="param-type">string</span>
494
+
495
+
496
+ </li>
497
+ </ul>
498
+
499
+
500
+
501
+
502
+
503
+ <dl class="details">
504
+
505
+
506
+
507
+
508
+
509
+
510
+ <dt class="inherited-from">Inherited From:</dt>
511
+ <dd class="inherited-from"><ul class="dummy"><li>
512
+ <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
513
+ </li></dd>
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+
530
+
531
+
532
+
533
+ <dt class="tag-source">Source:</dt>
534
+ <dd class="tag-source"><ul class="dummy"><li>
535
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
536
+ </li></ul></dd>
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+ </dl>
545
+
546
+
547
+
548
+
549
+
550
+ </dd>
551
+
552
+
553
+
554
+ <dt>
555
+ <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>
556
+
557
+
558
+ </dt>
559
+ <dd>
560
+
561
+ <div class="description">
562
+ <p>Parent object.</p>
563
+ </div>
564
+
565
+
566
+
567
+ <h5>Type:</h5>
568
+ <ul>
569
+ <li>
570
+
571
+ <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
572
+
573
+
574
+ </li>
575
+ </ul>
576
+
577
+
578
+
579
+
580
+
581
+ <dl class="details">
582
+
583
+
584
+
585
+
586
+
587
+
588
+ <dt class="inherited-from">Inherited From:</dt>
589
+ <dd class="inherited-from"><ul class="dummy"><li>
590
+ <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
591
+ </li></dd>
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+
611
+ <dt class="tag-source">Source:</dt>
612
+ <dd class="tag-source"><ul class="dummy"><li>
613
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
614
+ </li></ul></dd>
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+ </dl>
623
+
624
+
625
+
626
+
627
+
628
+ </dd>
629
+
630
+ </dl>
631
+
632
+
633
+
634
+ <h3 class="subsection-title">Methods</h3>
635
+
636
+ <dl>
637
+
638
+ <dt>
639
+
640
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
641
+
642
+
643
+
644
+ </dt>
645
+ <dd>
646
+
647
+
648
+ <div class="description">
649
+ <p>Builds this type.</p>
650
+ </div>
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+
662
+
663
+
664
+ <dl class="details">
665
+
666
+
667
+
668
+
669
+
670
+
671
+ <dt class="inherited-from">Inherited From:</dt>
672
+ <dd class="inherited-from"><ul class="dummy"><li>
673
+ <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
674
+ </li></dd>
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+ <dt class="tag-source">Source:</dt>
695
+ <dd class="tag-source"><ul class="dummy"><li>
696
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1414">line 1414</a>
697
+ </li></ul></dd>
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+ </dl>
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+ <h5>Throws:</h5>
718
+
719
+
720
+
721
+ <dl>
722
+ <dt>
723
+ <div class="param-desc">
724
+ If this type cannot be built directly
725
+ </div>
726
+ </dt>
727
+ <dt>
728
+ <dl>
729
+ <dt>
730
+ Type
731
+ </dt>
732
+ <dd>
733
+
734
+ <span class="param-type">Error</span>
735
+
736
+
737
+ </dd>
738
+ </dl>
739
+ </dt>
740
+ </dl>
741
+
742
+
743
+
744
+
745
+
746
+
747
+
748
+ </dd>
749
+
750
+
751
+
752
+ <dt>
753
+
754
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
755
+
756
+
757
+
758
+ </dt>
759
+ <dd>
760
+
761
+
762
+ <div class="description">
763
+ <p>Returns the fully qualified name of this object.</p>
764
+ </div>
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+ <dl class="details">
779
+
780
+
781
+
782
+
783
+
784
+
785
+ <dt class="inherited-from">Inherited From:</dt>
786
+ <dd class="inherited-from"><ul class="dummy"><li>
787
+ <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
788
+ </li></dd>
789
+
790
+
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+ <dt class="tag-source">Source:</dt>
809
+ <dd class="tag-source"><ul class="dummy"><li>
810
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
811
+ </li></ul></dd>
812
+
813
+
814
+
815
+
816
+
817
+
818
+
819
+ </dl>
820
+
821
+
822
+
823
+
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+ <h5>Returns:</h5>
834
+
835
+
836
+ <div class="param-desc">
837
+ <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
838
+ </div>
839
+
840
+
841
+
842
+ <dl>
843
+ <dt>
844
+ Type
845
+ </dt>
846
+ <dd>
847
+
848
+ <span class="param-type">string</span>
849
+
850
+
851
+ </dd>
852
+ </dl>
853
+
854
+
855
+
856
+
857
+ </dd>
858
+
859
+
860
+
861
+ <dt>
862
+
863
+ <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>
864
+
865
+
866
+
867
+ </dt>
868
+ <dd>
869
+
870
+
871
+ <div class="description">
872
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
873
+ </div>
874
+
875
+
876
+
877
+
878
+
879
+
880
+
881
+
882
+
883
+ <h5>Parameters:</h5>
884
+
885
+
886
+ <table class="params">
887
+ <thead>
888
+ <tr>
889
+
890
+ <th>Name</th>
891
+
892
+
893
+ <th>Type</th>
894
+
895
+
896
+ <th>Attributes</th>
897
+
898
+
899
+
900
+
901
+ <th class="last">Description</th>
902
+ </tr>
903
+ </thead>
904
+
905
+ <tbody>
906
+
907
+
908
+ <tr>
909
+
910
+ <td class="name"><code>includeClass</code></td>
911
+
912
+
913
+ <td class="type">
914
+
915
+
916
+ <span class="param-type">boolean</span>
917
+
918
+
919
+
920
+ </td>
921
+
922
+
923
+ <td class="attributes">
924
+
925
+ &lt;optional><br>
926
+
927
+
928
+
929
+
930
+
931
+ </td>
932
+
933
+
934
+
935
+
936
+ <td class="description last"><p>Set to true to include the class name. Defaults to false.</p></td>
937
+ </tr>
938
+
939
+
940
+ </tbody>
941
+ </table>
942
+
943
+
944
+
945
+
946
+
947
+ <dl class="details">
948
+
949
+
950
+
951
+
952
+
953
+
954
+ <dt class="inherited-from">Inherited From:</dt>
955
+ <dd class="inherited-from"><ul class="dummy"><li>
956
+ <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
957
+ </li></dd>
958
+
959
+
960
+
961
+
962
+
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+
975
+
976
+
977
+ <dt class="tag-source">Source:</dt>
978
+ <dd class="tag-source"><ul class="dummy"><li>
979
+ <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
980
+ </li></ul></dd>
981
+
982
+
983
+
984
+
985
+
986
+
987
+
988
+ </dl>
989
+
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+ <h5>Returns:</h5>
1003
+
1004
+
1005
+ <div class="param-desc">
1006
+ <p>String representation</p>
1007
+ </div>
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+ </dd>
1015
+
1016
+ </dl>
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ </article>
1023
+
1024
+ </section>
1025
+
1026
+
1027
+
1028
+
1029
+ </div>
1030
+
1031
+ <nav>
1032
+ <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.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>
1033
+ </nav>
1034
+
1035
+ <br clear="both">
1036
+
1037
+ <footer>
1038
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha10</a> on Mon Nov 24 2014 18:08:27 GMT+0100 (Mitteleuropäische Zeit)
1039
+ </footer>
1040
+
1041
+ <script> prettyPrint(); </script>
1042
+ <script src="scripts/linenumber.js"> </script>
1043
+ </body>
1044
+ </html>