protobufjs 4.1.2 → 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.
- package/.travis.yml +3 -1
- package/README.md +147 -25
- package/bin/pbjs +2 -2
- package/bower.json +3 -3
- package/cli/pbjs/targets/amd.js +1 -1
- package/cli/pbjs/targets/json.js +9 -1
- package/cli/pbjs/targets/proto.js +48 -24
- package/cli/pbjs/util.js +1 -1
- package/cli/pbjs.js +9 -2
- package/dist/README.md +10 -10
- package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
- package/dist/protobuf-light.min.js +94 -0
- package/dist/protobuf-light.min.js.gz +0 -0
- package/dist/protobuf-light.min.map +8 -0
- package/dist/{ProtoBuf.js → protobuf.js} +265 -175
- package/dist/protobuf.min.js +116 -0
- package/dist/protobuf.min.js.gz +0 -0
- package/dist/protobuf.min.map +8 -0
- package/docs/ProtoBuf.Builder.Message.html +1473 -967
- package/docs/ProtoBuf.Builder.Service.html +266 -197
- package/docs/ProtoBuf.Builder.html +758 -542
- package/docs/ProtoBuf.DotProto.Parser.html +223 -161
- package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
- package/docs/ProtoBuf.DotProto.html +20 -12
- package/docs/ProtoBuf.Element.html +554 -554
- package/docs/ProtoBuf.Map.html +158 -123
- package/docs/ProtoBuf.Reflect.Element.html +286 -143
- package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
- package/docs/ProtoBuf.Reflect.Enum.html +757 -537
- package/docs/ProtoBuf.Reflect.Extension.html +73 -56
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
- package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
- package/docs/ProtoBuf.Reflect.Message.html +919 -652
- package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
- package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
- package/docs/ProtoBuf.Reflect.Service.html +721 -511
- package/docs/ProtoBuf.Reflect.T.html +268 -197
- package/docs/ProtoBuf.Reflect.html +20 -12
- package/docs/ProtoBuf.Util.html +169 -118
- package/docs/ProtoBuf.html +840 -628
- package/docs/ProtoBuf.js.html +271 -180
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/index.html +7 -5
- package/docs/styles/jsdoc-default.css +95 -75
- package/docs/styles/prettify-tomorrow.css +1 -1
- package/donate.png +0 -0
- package/examples/protoify/json.js +123 -123
- package/examples/protoify/json.json +123 -123
- package/examples/websocket/server.js +4 -4
- package/externs/{ProtoBuf.js → protobuf.js} +933 -922
- package/index.js +1 -18
- package/jsdoc.json +1 -1
- package/package.json +11 -11
- package/protobuf.png +0 -0
- package/scripts/build.js +53 -58
- package/src/ProtoBuf/Builder/Message.js +18 -9
- package/src/ProtoBuf/Builder/Service.js +3 -0
- package/src/ProtoBuf/Builder.js +34 -10
- package/src/ProtoBuf/DotProto/Parser.js +58 -23
- package/src/ProtoBuf/Reflect/Element.js +17 -4
- package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
- package/src/ProtoBuf/Reflect/Message.js +9 -4
- package/src/ProtoBuf/Util.js +116 -116
- package/src/bower.json +2 -2
- package/src/google/protobuf/descriptor.json +55 -15
- package/src/{ProtoBuf.js → protobuf.js} +0 -0
- package/src/wrap.js +4 -4
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -1
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/imports-weak.proto +7 -0
- package/tests/imports.json +83 -83
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/options.json +32 -32
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +107 -82
- package/ProtoBuf.png +0 -0
- package/dist/ProtoBuf-light.min.js +0 -87
- package/dist/ProtoBuf-light.min.js.gz +0 -0
- package/dist/ProtoBuf-light.min.map +0 -8
- package/dist/ProtoBuf.min.js +0 -108
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +0 -8
- package/externs/ByteBuffer.js +0 -767
- package/externs/Long.js +0 -328
- package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
- package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
- package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
- package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
- package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
- package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
- package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
- package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
- package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
- package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
- package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
- package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
- package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
- package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
- package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
- package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
- package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
- package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
- package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
- package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
- package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
- package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
- package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
- package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
- package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
- package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
- package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
- package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
- package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
- package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
- package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
- package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
- package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
- package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
- package/sandbox/gapi/test.js +0 -17
- package/sandbox/gapi/test.proto +0 -12
- package/sandbox/issue146/MyOptions.proto +0 -28
- package/sandbox/issue146/Sample.proto +0 -21
- package/sandbox/issue146/main.js +0 -3
- package/sandbox/issue147/enum.proto +0 -8
- package/sandbox/issue147/main.js +0 -3
- package/sandbox/issue182/commands.proto +0 -10
- package/sandbox/issue182/execute.js +0 -22
- package/sandbox/issue182/session_commands.proto +0 -14
- package/sandbox/issue289/A.proto +0 -8
- package/sandbox/issue289/B.proto +0 -8
- package/sandbox/issue289/common.proto +0 -5
- package/sandbox/issue289/main.js +0 -7
- package/sandbox/issue300/IAuth.proto +0 -14
- package/sandbox/issue300/Request.proto +0 -14
- package/sandbox/issue300/main.js +0 -26
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/tests/gtfs-realtime.proto +0 -552
- package/webpack.config.js +0 -9
|
@@ -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.Enum.html">.Enum</a>.</span>
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Enum.html">.Enum</a>.</span>
|
|
33
|
+
|
|
34
|
+
Value
|
|
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="Value"><span class="type-signature"></span>new Value<span class="signature">(builder<span class="signature-attributes">non-null</span>, enm<span class="signature-attributes">non-null</span>, name, id)</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 Enum Value.</p>
|
|
53
|
-
</div>
|
|
54
|
-
|
|
55
51
|
|
|
56
|
-
|
|
57
52
|
|
|
58
|
-
|
|
53
|
+
<div class="description">
|
|
54
|
+
<p>Constructs a new Enum Value.</p>
|
|
55
|
+
</div>
|
|
59
56
|
|
|
57
|
+
|
|
58
|
+
|
|
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>
|
|
@@ -174,10 +178,20 @@
|
|
|
174
178
|
|
|
175
179
|
</tbody>
|
|
176
180
|
</table>
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
<dl class="details">
|
|
188
|
+
|
|
177
189
|
|
|
178
190
|
|
|
179
191
|
|
|
180
|
-
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
181
195
|
|
|
182
196
|
|
|
183
197
|
|
|
@@ -199,7 +213,7 @@
|
|
|
199
213
|
|
|
200
214
|
<dt class="tag-source">Source:</dt>
|
|
201
215
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
202
|
-
<a href="
|
|
216
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3905">line 3905</a>
|
|
203
217
|
</li></ul></dd>
|
|
204
218
|
|
|
205
219
|
|
|
@@ -211,20 +225,19 @@
|
|
|
211
225
|
</dl>
|
|
212
226
|
|
|
213
227
|
|
|
214
|
-
|
|
215
228
|
|
|
216
|
-
|
|
217
229
|
|
|
218
|
-
|
|
219
230
|
|
|
220
|
-
|
|
221
231
|
|
|
222
|
-
|
|
223
232
|
|
|
224
|
-
|
|
225
233
|
|
|
226
|
-
|
|
227
|
-
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
228
241
|
|
|
229
242
|
|
|
230
243
|
</div>
|
|
@@ -232,10 +245,13 @@
|
|
|
232
245
|
|
|
233
246
|
<h3 class="subsection-title">Extends</h3>
|
|
234
247
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
<ul>
|
|
252
|
+
<li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
|
|
253
|
+
</ul>
|
|
254
|
+
|
|
239
255
|
|
|
240
256
|
|
|
241
257
|
|
|
@@ -250,35 +266,34 @@
|
|
|
250
266
|
|
|
251
267
|
<h3 class="subsection-title">Members</h3>
|
|
252
268
|
|
|
253
|
-
|
|
269
|
+
|
|
254
270
|
|
|
255
|
-
<
|
|
256
|
-
<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>
|
|
271
|
+
<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>
|
|
257
272
|
|
|
258
|
-
|
|
259
|
-
</dt>
|
|
260
|
-
<dd>
|
|
261
|
-
|
|
262
|
-
<div class="description">
|
|
263
|
-
<p>Builder reference.</p>
|
|
264
|
-
</div>
|
|
265
|
-
|
|
266
273
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
<div class="description">
|
|
277
|
+
<p>Builder reference.</p>
|
|
278
|
+
</div>
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<h5>Type:</h5>
|
|
283
|
+
<ul>
|
|
284
|
+
<li>
|
|
285
|
+
|
|
272
286
|
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
273
287
|
|
|
274
288
|
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
289
|
+
</li>
|
|
290
|
+
</ul>
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
278
295
|
|
|
279
|
-
|
|
280
296
|
<dl class="details">
|
|
281
|
-
|
|
282
297
|
|
|
283
298
|
|
|
284
299
|
|
|
@@ -288,7 +303,15 @@
|
|
|
288
303
|
<dt class="inherited-from">Inherited From:</dt>
|
|
289
304
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
290
305
|
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
291
|
-
</li></dd>
|
|
306
|
+
</li></ul></dd>
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
292
315
|
|
|
293
316
|
|
|
294
317
|
|
|
@@ -304,7 +327,7 @@
|
|
|
304
327
|
|
|
305
328
|
<dt class="tag-source">Source:</dt>
|
|
306
329
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
307
|
-
<a href="
|
|
330
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
|
|
308
331
|
</li></ul></dd>
|
|
309
332
|
|
|
310
333
|
|
|
@@ -316,25 +339,50 @@
|
|
|
316
339
|
</dl>
|
|
317
340
|
|
|
318
341
|
|
|
319
|
-
|
|
320
342
|
|
|
321
|
-
|
|
322
|
-
|
|
343
|
+
|
|
344
|
+
|
|
323
345
|
|
|
324
346
|
|
|
325
347
|
|
|
326
|
-
<
|
|
327
|
-
|
|
348
|
+
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
<div class="description">
|
|
354
|
+
<p>Fully qualified class name</p>
|
|
355
|
+
</div>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
<h5>Type:</h5>
|
|
360
|
+
<ul>
|
|
361
|
+
<li>
|
|
362
|
+
|
|
363
|
+
<span class="param-type">string</span>
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
</li>
|
|
367
|
+
</ul>
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
<dl class="details">
|
|
328
374
|
|
|
329
375
|
|
|
330
|
-
|
|
331
|
-
<dd>
|
|
376
|
+
|
|
332
377
|
|
|
333
378
|
|
|
334
379
|
|
|
335
380
|
|
|
336
381
|
|
|
337
|
-
<
|
|
382
|
+
<dt class="tag-overrides">Overrides:</dt>
|
|
383
|
+
<dd class="tag-overrides"><ul class="dummy"><li>
|
|
384
|
+
<a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
|
|
385
|
+
</li></ul></dd>
|
|
338
386
|
|
|
339
387
|
|
|
340
388
|
|
|
@@ -356,7 +404,7 @@
|
|
|
356
404
|
|
|
357
405
|
<dt class="tag-source">Source:</dt>
|
|
358
406
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
359
|
-
<a href="
|
|
407
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
|
|
360
408
|
</li></ul></dd>
|
|
361
409
|
|
|
362
410
|
|
|
@@ -368,39 +416,45 @@
|
|
|
368
416
|
</dl>
|
|
369
417
|
|
|
370
418
|
|
|
371
|
-
|
|
372
419
|
|
|
373
|
-
|
|
374
|
-
|
|
420
|
+
|
|
421
|
+
|
|
375
422
|
|
|
376
423
|
|
|
377
424
|
|
|
378
|
-
<
|
|
379
|
-
<h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
|
|
425
|
+
<h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
|
|
380
426
|
|
|
381
|
-
|
|
382
|
-
</dt>
|
|
383
|
-
<dd>
|
|
384
|
-
|
|
385
|
-
<div class="description">
|
|
386
|
-
<p>Unique enum value id.</p>
|
|
387
|
-
</div>
|
|
388
|
-
|
|
389
427
|
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
<div class="description">
|
|
431
|
+
<p>Unique enum value id.</p>
|
|
432
|
+
</div>
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
<h5>Type:</h5>
|
|
437
|
+
<ul>
|
|
438
|
+
<li>
|
|
439
|
+
|
|
395
440
|
<span class="param-type">number</span>
|
|
396
441
|
|
|
397
442
|
|
|
398
|
-
|
|
399
|
-
|
|
443
|
+
</li>
|
|
444
|
+
</ul>
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
<dl class="details">
|
|
451
|
+
|
|
400
452
|
|
|
401
453
|
|
|
402
454
|
|
|
403
|
-
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
404
458
|
|
|
405
459
|
|
|
406
460
|
|
|
@@ -422,7 +476,7 @@
|
|
|
422
476
|
|
|
423
477
|
<dt class="tag-source">Source:</dt>
|
|
424
478
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
425
|
-
<a href="
|
|
479
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3918">line 3918</a>
|
|
426
480
|
</li></ul></dd>
|
|
427
481
|
|
|
428
482
|
|
|
@@ -434,40 +488,38 @@
|
|
|
434
488
|
</dl>
|
|
435
489
|
|
|
436
490
|
|
|
437
|
-
|
|
438
491
|
|
|
439
|
-
|
|
440
|
-
|
|
492
|
+
|
|
493
|
+
|
|
441
494
|
|
|
442
495
|
|
|
443
496
|
|
|
444
|
-
<
|
|
445
|
-
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
497
|
+
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
446
498
|
|
|
447
|
-
|
|
448
|
-
</dt>
|
|
449
|
-
<dd>
|
|
450
|
-
|
|
451
|
-
<div class="description">
|
|
452
|
-
<p>Object name in namespace.</p>
|
|
453
|
-
</div>
|
|
454
|
-
|
|
455
499
|
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<div class="description">
|
|
503
|
+
<p>Object name in namespace.</p>
|
|
504
|
+
</div>
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
<h5>Type:</h5>
|
|
509
|
+
<ul>
|
|
510
|
+
<li>
|
|
511
|
+
|
|
461
512
|
<span class="param-type">string</span>
|
|
462
513
|
|
|
463
514
|
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
515
|
+
</li>
|
|
516
|
+
</ul>
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
467
521
|
|
|
468
|
-
|
|
469
522
|
<dl class="details">
|
|
470
|
-
|
|
471
523
|
|
|
472
524
|
|
|
473
525
|
|
|
@@ -477,7 +529,15 @@
|
|
|
477
529
|
<dt class="inherited-from">Inherited From:</dt>
|
|
478
530
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
479
531
|
<a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
|
|
480
|
-
</li></dd>
|
|
532
|
+
</li></ul></dd>
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
481
541
|
|
|
482
542
|
|
|
483
543
|
|
|
@@ -493,7 +553,7 @@
|
|
|
493
553
|
|
|
494
554
|
<dt class="tag-source">Source:</dt>
|
|
495
555
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
496
|
-
<a href="
|
|
556
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
|
|
497
557
|
</li></ul></dd>
|
|
498
558
|
|
|
499
559
|
|
|
@@ -505,40 +565,38 @@
|
|
|
505
565
|
</dl>
|
|
506
566
|
|
|
507
567
|
|
|
508
|
-
|
|
509
568
|
|
|
510
|
-
|
|
511
|
-
|
|
569
|
+
|
|
570
|
+
|
|
512
571
|
|
|
513
572
|
|
|
514
573
|
|
|
515
|
-
<
|
|
516
|
-
<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>
|
|
574
|
+
<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>
|
|
517
575
|
|
|
518
|
-
|
|
519
|
-
</dt>
|
|
520
|
-
<dd>
|
|
521
|
-
|
|
522
|
-
<div class="description">
|
|
523
|
-
<p>Parent object.</p>
|
|
524
|
-
</div>
|
|
525
|
-
|
|
526
576
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
<div class="description">
|
|
580
|
+
<p>Parent object.</p>
|
|
581
|
+
</div>
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
<h5>Type:</h5>
|
|
586
|
+
<ul>
|
|
587
|
+
<li>
|
|
588
|
+
|
|
532
589
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
533
590
|
|
|
534
591
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
592
|
+
</li>
|
|
593
|
+
</ul>
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
538
598
|
|
|
539
|
-
|
|
540
599
|
<dl class="details">
|
|
541
|
-
|
|
542
600
|
|
|
543
601
|
|
|
544
602
|
|
|
@@ -548,7 +606,15 @@
|
|
|
548
606
|
<dt class="inherited-from">Inherited From:</dt>
|
|
549
607
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
550
608
|
<a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
|
|
551
|
-
</li></dd>
|
|
609
|
+
</li></ul></dd>
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
552
618
|
|
|
553
619
|
|
|
554
620
|
|
|
@@ -564,7 +630,7 @@
|
|
|
564
630
|
|
|
565
631
|
<dt class="tag-source">Source:</dt>
|
|
566
632
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
567
|
-
<a href="
|
|
633
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
|
|
568
634
|
</li></ul></dd>
|
|
569
635
|
|
|
570
636
|
|
|
@@ -576,41 +642,44 @@
|
|
|
576
642
|
</dl>
|
|
577
643
|
|
|
578
644
|
|
|
579
|
-
|
|
580
645
|
|
|
581
|
-
|
|
582
|
-
</dd>
|
|
583
646
|
|
|
584
|
-
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
585
650
|
|
|
586
651
|
|
|
587
652
|
|
|
588
653
|
<h3 class="subsection-title">Methods</h3>
|
|
589
654
|
|
|
590
|
-
|
|
655
|
+
|
|
591
656
|
|
|
592
|
-
<dt>
|
|
593
|
-
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
594
657
|
|
|
595
658
|
|
|
596
|
-
</dt>
|
|
597
|
-
<dd>
|
|
598
659
|
|
|
599
|
-
|
|
600
|
-
<div class="description">
|
|
601
|
-
<p>Builds this type.</p>
|
|
602
|
-
</div>
|
|
603
|
-
|
|
660
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
604
661
|
|
|
605
662
|
|
|
606
663
|
|
|
607
|
-
|
|
608
664
|
|
|
609
|
-
|
|
610
665
|
|
|
611
|
-
|
|
666
|
+
<div class="description">
|
|
667
|
+
<p>Builds this type.</p>
|
|
668
|
+
</div>
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
|
|
612
682
|
<dl class="details">
|
|
613
|
-
|
|
614
683
|
|
|
615
684
|
|
|
616
685
|
|
|
@@ -620,7 +689,15 @@
|
|
|
620
689
|
<dt class="inherited-from">Inherited From:</dt>
|
|
621
690
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
622
691
|
<a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
|
|
623
|
-
</li></dd>
|
|
692
|
+
</li></ul></dd>
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
|
|
624
701
|
|
|
625
702
|
|
|
626
703
|
|
|
@@ -636,7 +713,7 @@
|
|
|
636
713
|
|
|
637
714
|
<dt class="tag-source">Source:</dt>
|
|
638
715
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
639
|
-
<a href="
|
|
716
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
|
|
640
717
|
</li></ul></dd>
|
|
641
718
|
|
|
642
719
|
|
|
@@ -648,25 +725,26 @@
|
|
|
648
725
|
</dl>
|
|
649
726
|
|
|
650
727
|
|
|
651
|
-
|
|
652
728
|
|
|
653
|
-
|
|
654
729
|
|
|
655
|
-
|
|
656
730
|
|
|
657
|
-
|
|
658
731
|
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
<h5>Throws:</h5>
|
|
738
|
+
|
|
739
|
+
|
|
663
740
|
|
|
664
741
|
<dl>
|
|
665
742
|
<dt>
|
|
666
743
|
<div class="param-desc">
|
|
667
|
-
If this type cannot be built directly
|
|
744
|
+
<p>If this type cannot be built directly</p>
|
|
668
745
|
</div>
|
|
669
746
|
</dt>
|
|
747
|
+
<dd></dd>
|
|
670
748
|
<dt>
|
|
671
749
|
<dl>
|
|
672
750
|
<dt>
|
|
@@ -680,40 +758,44 @@
|
|
|
680
758
|
</dd>
|
|
681
759
|
</dl>
|
|
682
760
|
</dt>
|
|
761
|
+
<dd></dd>
|
|
683
762
|
</dl>
|
|
684
763
|
|
|
685
764
|
|
|
686
|
-
|
|
687
|
-
|
|
688
765
|
|
|
689
766
|
|
|
690
|
-
|
|
691
|
-
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
692
770
|
|
|
693
771
|
|
|
694
772
|
|
|
695
|
-
<dt>
|
|
696
|
-
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
697
773
|
|
|
698
774
|
|
|
699
|
-
</dt>
|
|
700
|
-
<dd>
|
|
701
775
|
|
|
702
|
-
|
|
703
|
-
<div class="description">
|
|
704
|
-
<p>Returns the fully qualified name of this object.</p>
|
|
705
|
-
</div>
|
|
706
|
-
|
|
776
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
707
777
|
|
|
708
778
|
|
|
709
779
|
|
|
710
|
-
|
|
711
780
|
|
|
712
|
-
|
|
713
781
|
|
|
714
|
-
|
|
782
|
+
<div class="description">
|
|
783
|
+
<p>Returns the fully qualified name of this object.</p>
|
|
784
|
+
</div>
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
|
|
715
798
|
<dl class="details">
|
|
716
|
-
|
|
717
799
|
|
|
718
800
|
|
|
719
801
|
|
|
@@ -723,7 +805,15 @@
|
|
|
723
805
|
<dt class="inherited-from">Inherited From:</dt>
|
|
724
806
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
725
807
|
<a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
|
|
726
|
-
</li></dd>
|
|
808
|
+
</li></ul></dd>
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
727
817
|
|
|
728
818
|
|
|
729
819
|
|
|
@@ -739,7 +829,7 @@
|
|
|
739
829
|
|
|
740
830
|
<dt class="tag-source">Source:</dt>
|
|
741
831
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
742
|
-
<a href="
|
|
832
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
|
|
743
833
|
</li></ul></dd>
|
|
744
834
|
|
|
745
835
|
|
|
@@ -751,20 +841,20 @@
|
|
|
751
841
|
</dl>
|
|
752
842
|
|
|
753
843
|
|
|
754
|
-
|
|
755
844
|
|
|
756
|
-
|
|
757
845
|
|
|
758
|
-
|
|
759
846
|
|
|
760
|
-
|
|
761
847
|
|
|
762
|
-
|
|
763
848
|
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
<h5>Returns:</h5>
|
|
856
|
+
|
|
857
|
+
|
|
768
858
|
<div class="param-desc">
|
|
769
859
|
<p>Fully qualified name as of ".PATH.TO.THIS"</p>
|
|
770
860
|
</div>
|
|
@@ -783,33 +873,35 @@
|
|
|
783
873
|
</dd>
|
|
784
874
|
</dl>
|
|
785
875
|
|
|
786
|
-
|
|
787
|
-
|
|
788
876
|
|
|
789
|
-
|
|
877
|
+
|
|
878
|
+
|
|
790
879
|
|
|
791
880
|
|
|
792
881
|
|
|
793
|
-
<dt>
|
|
794
|
-
<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>
|
|
795
882
|
|
|
796
883
|
|
|
797
|
-
</dt>
|
|
798
|
-
<dd>
|
|
799
884
|
|
|
800
|
-
|
|
801
|
-
<div class="description">
|
|
802
|
-
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
803
|
-
</div>
|
|
804
|
-
|
|
885
|
+
<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>
|
|
805
886
|
|
|
806
887
|
|
|
807
888
|
|
|
808
|
-
|
|
809
889
|
|
|
890
|
+
|
|
891
|
+
<div class="description">
|
|
892
|
+
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
893
|
+
</div>
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
<h5>Parameters:</h5>
|
|
810
904
|
|
|
811
|
-
<h5>Parameters:</h5>
|
|
812
|
-
|
|
813
905
|
|
|
814
906
|
<table class="params">
|
|
815
907
|
<thead>
|
|
@@ -867,11 +959,13 @@
|
|
|
867
959
|
|
|
868
960
|
</tbody>
|
|
869
961
|
</table>
|
|
870
|
-
|
|
871
962
|
|
|
872
|
-
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
|
|
873
968
|
<dl class="details">
|
|
874
|
-
|
|
875
969
|
|
|
876
970
|
|
|
877
971
|
|
|
@@ -881,7 +975,15 @@
|
|
|
881
975
|
<dt class="inherited-from">Inherited From:</dt>
|
|
882
976
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
883
977
|
<a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
|
|
884
|
-
</li></dd>
|
|
978
|
+
</li></ul></dd>
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
|
|
885
987
|
|
|
886
988
|
|
|
887
989
|
|
|
@@ -897,7 +999,7 @@
|
|
|
897
999
|
|
|
898
1000
|
<dt class="tag-source">Source:</dt>
|
|
899
1001
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
900
|
-
<a href="
|
|
1002
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
|
|
901
1003
|
</li></ul></dd>
|
|
902
1004
|
|
|
903
1005
|
|
|
@@ -909,32 +1011,31 @@
|
|
|
909
1011
|
</dl>
|
|
910
1012
|
|
|
911
1013
|
|
|
912
|
-
|
|
913
1014
|
|
|
914
|
-
|
|
915
1015
|
|
|
916
|
-
|
|
917
1016
|
|
|
918
|
-
|
|
919
1017
|
|
|
920
|
-
|
|
921
1018
|
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
<h5>Returns:</h5>
|
|
1026
|
+
|
|
1027
|
+
|
|
926
1028
|
<div class="param-desc">
|
|
927
1029
|
<p>String representation</p>
|
|
928
1030
|
</div>
|
|
929
1031
|
|
|
930
1032
|
|
|
931
1033
|
|
|
932
|
-
|
|
933
|
-
|
|
934
1034
|
|
|
935
|
-
</dd>
|
|
936
1035
|
|
|
937
|
-
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
|
|
938
1039
|
|
|
939
1040
|
|
|
940
1041
|
|
|
@@ -950,13 +1051,13 @@
|
|
|
950
1051
|
</div>
|
|
951
1052
|
|
|
952
1053
|
<nav>
|
|
953
|
-
<h2><a href="index.html">
|
|
1054
|
+
<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>
|
|
954
1055
|
</nav>
|
|
955
1056
|
|
|
956
|
-
<br
|
|
1057
|
+
<br class="clear">
|
|
957
1058
|
|
|
958
1059
|
<footer>
|
|
959
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.
|
|
1060
|
+
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)
|
|
960
1061
|
</footer>
|
|
961
1062
|
|
|
962
1063
|
<script> prettyPrint(); </script>
|