insite 0.0.2 → 0.0.5
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.
- checksums.yaml +4 -4
- data/lib/insite.rb +13 -7
- data/lib/insite/component/component.rb +454 -0
- data/lib/insite/component/component_collection.rb +112 -0
- data/lib/insite/component/component_instance_methods.rb +4 -0
- data/lib/insite/component/component_methods.rb +4 -0
- data/lib/insite/constants.rb +323 -31
- data/lib/insite/element/element.rb +147 -0
- data/lib/insite/element/element_collection.rb +102 -0
- data/lib/insite/element/generated/class_map.rb +244 -0
- data/lib/insite/element/generated/element_classes.rb +721 -0
- data/lib/insite/element/generated/element_instance_methods.rb +1594 -0
- data/lib/insite/errors.rb +2 -0
- data/lib/insite/examples/material_angular_io/components/angular_material_component.rb +13 -0
- data/lib/insite/examples/material_angular_io/components/example_viewer.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_chip.rb +29 -0
- data/lib/insite/examples/material_angular_io/components/mat_chip_list.rb +21 -0
- data/lib/insite/examples/material_angular_io/components/mat_form_field.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_icon.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_input.rb +5 -0
- data/lib/insite/examples/material_angular_io/components/mat_option.rb +3 -0
- data/lib/insite/examples/material_angular_io/components/mat_select.rb +15 -0
- data/lib/insite/examples/material_angular_io/components/mat_select_content.rb +13 -0
- data/lib/insite/examples/material_angular_io/components/no_selector.rb +3 -0
- data/lib/insite/examples/material_angular_io/pages.rb +20 -0
- data/lib/insite/examples/material_angular_io/site.rb +5 -0
- data/lib/insite/examples/material_angular_io/utils.rb +6 -0
- data/lib/insite/examples/material_angular_io/watir_mods.rb +54 -0
- data/lib/insite/examples/material_angular_io_site.rb +54 -0
- data/lib/insite/insite.rb +96 -11
- data/lib/insite/methods/common_methods.rb +26 -37
- data/lib/insite/methods/dom_methods.rb +73 -46
- data/lib/insite/page/defined_page.rb +37 -50
- data/lib/insite/page/undefined_page.rb +12 -1
- data/lib/insite/version.rb +1 -1
- metadata +69 -29
- data/lib/insite/element_container/element_container.rb +0 -42
- data/lib/insite/feature/feature.rb +0 -30
- data/lib/insite/widget/widget.rb +0 -346
- data/lib/insite/widget/widget_methods.rb +0 -4
@@ -0,0 +1,721 @@
|
|
1
|
+
module Insite
|
2
|
+
class Anchor < Insite::Element
|
3
|
+
end
|
4
|
+
|
5
|
+
class AnchorCollection < Insite::ElementCollection
|
6
|
+
end
|
7
|
+
|
8
|
+
class Applet < Insite::Element
|
9
|
+
end
|
10
|
+
|
11
|
+
class AppletCollection < Insite::ElementCollection
|
12
|
+
end
|
13
|
+
|
14
|
+
class Area < Insite::Element
|
15
|
+
end
|
16
|
+
|
17
|
+
class AreaCollection < Insite::ElementCollection
|
18
|
+
end
|
19
|
+
|
20
|
+
class Audio < Insite::Element
|
21
|
+
end
|
22
|
+
|
23
|
+
class AudioCollection < Insite::ElementCollection
|
24
|
+
end
|
25
|
+
|
26
|
+
class BR < Insite::Element
|
27
|
+
end
|
28
|
+
|
29
|
+
class BRCollection < Insite::ElementCollection
|
30
|
+
end
|
31
|
+
|
32
|
+
class Base < Insite::Element
|
33
|
+
end
|
34
|
+
|
35
|
+
class BaseCollection < Insite::ElementCollection
|
36
|
+
end
|
37
|
+
|
38
|
+
class Body < Insite::Element
|
39
|
+
end
|
40
|
+
|
41
|
+
class BodyCollection < Insite::ElementCollection
|
42
|
+
end
|
43
|
+
|
44
|
+
class Button < Insite::Element
|
45
|
+
end
|
46
|
+
|
47
|
+
class ButtonCollection < Insite::ElementCollection
|
48
|
+
end
|
49
|
+
|
50
|
+
class Canvas < Insite::Element
|
51
|
+
end
|
52
|
+
|
53
|
+
class CanvasCollection < Insite::ElementCollection
|
54
|
+
end
|
55
|
+
|
56
|
+
class Cell < Insite::Element
|
57
|
+
end
|
58
|
+
|
59
|
+
class CellCollection < Insite::ElementCollection
|
60
|
+
end
|
61
|
+
|
62
|
+
class CheckBox < Insite::Element
|
63
|
+
end
|
64
|
+
|
65
|
+
class CheckBoxCollection < Insite::ElementCollection
|
66
|
+
end
|
67
|
+
|
68
|
+
class Circle < Insite::Element
|
69
|
+
end
|
70
|
+
|
71
|
+
class CircleCollection < Insite::ElementCollection
|
72
|
+
end
|
73
|
+
|
74
|
+
class Cursor < Insite::Element
|
75
|
+
end
|
76
|
+
|
77
|
+
class CursorCollection < Insite::ElementCollection
|
78
|
+
end
|
79
|
+
|
80
|
+
class DList < Insite::Element
|
81
|
+
end
|
82
|
+
|
83
|
+
class DListCollection < Insite::ElementCollection
|
84
|
+
end
|
85
|
+
|
86
|
+
class Data < Insite::Element
|
87
|
+
end
|
88
|
+
|
89
|
+
class DataCollection < Insite::ElementCollection
|
90
|
+
end
|
91
|
+
|
92
|
+
class DataList < Insite::Element
|
93
|
+
end
|
94
|
+
|
95
|
+
class DataListCollection < Insite::ElementCollection
|
96
|
+
end
|
97
|
+
|
98
|
+
class DateField < Insite::Element
|
99
|
+
end
|
100
|
+
|
101
|
+
class DateFieldCollection < Insite::ElementCollection
|
102
|
+
end
|
103
|
+
|
104
|
+
class DateTimeField < Insite::Element
|
105
|
+
end
|
106
|
+
|
107
|
+
class DateTimeFieldCollection < Insite::ElementCollection
|
108
|
+
end
|
109
|
+
|
110
|
+
class Defs < Insite::Element
|
111
|
+
end
|
112
|
+
|
113
|
+
class DefsCollection < Insite::ElementCollection
|
114
|
+
end
|
115
|
+
|
116
|
+
class Desc < Insite::Element
|
117
|
+
end
|
118
|
+
|
119
|
+
class DescCollection < Insite::ElementCollection
|
120
|
+
end
|
121
|
+
|
122
|
+
class Details < Insite::Element
|
123
|
+
end
|
124
|
+
|
125
|
+
class DetailsCollection < Insite::ElementCollection
|
126
|
+
end
|
127
|
+
|
128
|
+
class Directory < Insite::Element
|
129
|
+
end
|
130
|
+
|
131
|
+
class DirectoryCollection < Insite::ElementCollection
|
132
|
+
end
|
133
|
+
|
134
|
+
class Div < Insite::Element
|
135
|
+
end
|
136
|
+
|
137
|
+
class DivCollection < Insite::ElementCollection
|
138
|
+
end
|
139
|
+
|
140
|
+
class Ellipse < Insite::Element
|
141
|
+
end
|
142
|
+
|
143
|
+
class EllipseCollection < Insite::ElementCollection
|
144
|
+
end
|
145
|
+
|
146
|
+
class Embed < Insite::Element
|
147
|
+
end
|
148
|
+
|
149
|
+
class EmbedCollection < Insite::ElementCollection
|
150
|
+
end
|
151
|
+
|
152
|
+
class FieldSet < Insite::Element
|
153
|
+
end
|
154
|
+
|
155
|
+
class FieldSetCollection < Insite::ElementCollection
|
156
|
+
end
|
157
|
+
|
158
|
+
class FileField < Insite::Element
|
159
|
+
end
|
160
|
+
|
161
|
+
class FileFieldCollection < Insite::ElementCollection
|
162
|
+
end
|
163
|
+
|
164
|
+
class Font < Insite::Element
|
165
|
+
end
|
166
|
+
|
167
|
+
class FontCollection < Insite::ElementCollection
|
168
|
+
end
|
169
|
+
|
170
|
+
class ForeignObject < Insite::Element
|
171
|
+
end
|
172
|
+
|
173
|
+
class ForeignObjectCollection < Insite::ElementCollection
|
174
|
+
end
|
175
|
+
|
176
|
+
class Form < Insite::Element
|
177
|
+
end
|
178
|
+
|
179
|
+
class FormCollection < Insite::ElementCollection
|
180
|
+
end
|
181
|
+
|
182
|
+
class Frame < Insite::Element
|
183
|
+
end
|
184
|
+
|
185
|
+
class FrameCollection < Insite::ElementCollection
|
186
|
+
end
|
187
|
+
|
188
|
+
class FrameSet < Insite::Element
|
189
|
+
end
|
190
|
+
|
191
|
+
class FrameSetCollection < Insite::ElementCollection
|
192
|
+
end
|
193
|
+
|
194
|
+
class G < Insite::Element
|
195
|
+
end
|
196
|
+
|
197
|
+
class GCollection < Insite::ElementCollection
|
198
|
+
end
|
199
|
+
|
200
|
+
class Geometry < Insite::Element
|
201
|
+
end
|
202
|
+
|
203
|
+
class GeometryCollection < Insite::ElementCollection
|
204
|
+
end
|
205
|
+
|
206
|
+
class Gradient < Insite::Element
|
207
|
+
end
|
208
|
+
|
209
|
+
class GradientCollection < Insite::ElementCollection
|
210
|
+
end
|
211
|
+
|
212
|
+
class Graphics < Insite::Element
|
213
|
+
end
|
214
|
+
|
215
|
+
class GraphicsCollection < Insite::ElementCollection
|
216
|
+
end
|
217
|
+
|
218
|
+
class HR < Insite::Element
|
219
|
+
end
|
220
|
+
|
221
|
+
class HRCollection < Insite::ElementCollection
|
222
|
+
end
|
223
|
+
|
224
|
+
class HTMLElement < Insite::Element
|
225
|
+
end
|
226
|
+
|
227
|
+
class HTMLElementCollection < Insite::ElementCollection
|
228
|
+
end
|
229
|
+
|
230
|
+
class Hatch < Insite::Element
|
231
|
+
end
|
232
|
+
|
233
|
+
class HatchCollection < Insite::ElementCollection
|
234
|
+
end
|
235
|
+
|
236
|
+
class Hatchpath < Insite::Element
|
237
|
+
end
|
238
|
+
|
239
|
+
class HatchpathCollection < Insite::ElementCollection
|
240
|
+
end
|
241
|
+
|
242
|
+
class Head < Insite::Element
|
243
|
+
end
|
244
|
+
|
245
|
+
class HeadCollection < Insite::ElementCollection
|
246
|
+
end
|
247
|
+
|
248
|
+
class Heading < Insite::Element
|
249
|
+
end
|
250
|
+
|
251
|
+
class HeadingCollection < Insite::ElementCollection
|
252
|
+
end
|
253
|
+
|
254
|
+
class Hidden < Insite::Element
|
255
|
+
end
|
256
|
+
|
257
|
+
class HiddenCollection < Insite::ElementCollection
|
258
|
+
end
|
259
|
+
|
260
|
+
class Html < Insite::Element
|
261
|
+
end
|
262
|
+
|
263
|
+
class HtmlCollection < Insite::ElementCollection
|
264
|
+
end
|
265
|
+
|
266
|
+
class IFrame < Insite::Element
|
267
|
+
end
|
268
|
+
|
269
|
+
class IFrameCollection < Insite::ElementCollection
|
270
|
+
end
|
271
|
+
|
272
|
+
class Image < Insite::Element
|
273
|
+
end
|
274
|
+
|
275
|
+
class ImageCollection < Insite::ElementCollection
|
276
|
+
end
|
277
|
+
|
278
|
+
class Input < Insite::Element
|
279
|
+
end
|
280
|
+
|
281
|
+
class InputCollection < Insite::ElementCollection
|
282
|
+
end
|
283
|
+
|
284
|
+
class Keygen < Insite::Element
|
285
|
+
end
|
286
|
+
|
287
|
+
class KeygenCollection < Insite::ElementCollection
|
288
|
+
end
|
289
|
+
|
290
|
+
class LI < Insite::Element
|
291
|
+
end
|
292
|
+
|
293
|
+
class LICollection < Insite::ElementCollection
|
294
|
+
end
|
295
|
+
|
296
|
+
class Label < Insite::Element
|
297
|
+
end
|
298
|
+
|
299
|
+
class LabelCollection < Insite::ElementCollection
|
300
|
+
end
|
301
|
+
|
302
|
+
class Legend < Insite::Element
|
303
|
+
end
|
304
|
+
|
305
|
+
class LegendCollection < Insite::ElementCollection
|
306
|
+
end
|
307
|
+
|
308
|
+
class Line < Insite::Element
|
309
|
+
end
|
310
|
+
|
311
|
+
class LineCollection < Insite::ElementCollection
|
312
|
+
end
|
313
|
+
|
314
|
+
class LinearGradient < Insite::Element
|
315
|
+
end
|
316
|
+
|
317
|
+
class LinearGradientCollection < Insite::ElementCollection
|
318
|
+
end
|
319
|
+
|
320
|
+
class Map < Insite::Element
|
321
|
+
end
|
322
|
+
|
323
|
+
class MapCollection < Insite::ElementCollection
|
324
|
+
end
|
325
|
+
|
326
|
+
class Marker < Insite::Element
|
327
|
+
end
|
328
|
+
|
329
|
+
class MarkerCollection < Insite::ElementCollection
|
330
|
+
end
|
331
|
+
|
332
|
+
class Marquee < Insite::Element
|
333
|
+
end
|
334
|
+
|
335
|
+
class MarqueeCollection < Insite::ElementCollection
|
336
|
+
end
|
337
|
+
|
338
|
+
class Media < Insite::Element
|
339
|
+
end
|
340
|
+
|
341
|
+
class MediaCollection < Insite::ElementCollection
|
342
|
+
end
|
343
|
+
|
344
|
+
class Menu < Insite::Element
|
345
|
+
end
|
346
|
+
|
347
|
+
class MenuCollection < Insite::ElementCollection
|
348
|
+
end
|
349
|
+
|
350
|
+
class MenuItem < Insite::Element
|
351
|
+
end
|
352
|
+
|
353
|
+
class MenuItemCollection < Insite::ElementCollection
|
354
|
+
end
|
355
|
+
|
356
|
+
class Mesh < Insite::Element
|
357
|
+
end
|
358
|
+
|
359
|
+
class MeshCollection < Insite::ElementCollection
|
360
|
+
end
|
361
|
+
|
362
|
+
class MeshGradient < Insite::Element
|
363
|
+
end
|
364
|
+
|
365
|
+
class MeshGradientCollection < Insite::ElementCollection
|
366
|
+
end
|
367
|
+
|
368
|
+
class Meshpatch < Insite::Element
|
369
|
+
end
|
370
|
+
|
371
|
+
class MeshpatchCollection < Insite::ElementCollection
|
372
|
+
end
|
373
|
+
|
374
|
+
class Meshrow < Insite::Element
|
375
|
+
end
|
376
|
+
|
377
|
+
class MeshrowCollection < Insite::ElementCollection
|
378
|
+
end
|
379
|
+
|
380
|
+
class Meta < Insite::Element
|
381
|
+
end
|
382
|
+
|
383
|
+
class MetaCollection < Insite::ElementCollection
|
384
|
+
end
|
385
|
+
|
386
|
+
class Metadata < Insite::Element
|
387
|
+
end
|
388
|
+
|
389
|
+
class MetadataCollection < Insite::ElementCollection
|
390
|
+
end
|
391
|
+
|
392
|
+
class Meter < Insite::Element
|
393
|
+
end
|
394
|
+
|
395
|
+
class MeterCollection < Insite::ElementCollection
|
396
|
+
end
|
397
|
+
|
398
|
+
class Mod < Insite::Element
|
399
|
+
end
|
400
|
+
|
401
|
+
class ModCollection < Insite::ElementCollection
|
402
|
+
end
|
403
|
+
|
404
|
+
class OList < Insite::Element
|
405
|
+
end
|
406
|
+
|
407
|
+
class OListCollection < Insite::ElementCollection
|
408
|
+
end
|
409
|
+
|
410
|
+
class Object < Insite::Element
|
411
|
+
end
|
412
|
+
|
413
|
+
class ObjectCollection < Insite::ElementCollection
|
414
|
+
end
|
415
|
+
|
416
|
+
class OptGroup < Insite::Element
|
417
|
+
end
|
418
|
+
|
419
|
+
class OptGroupCollection < Insite::ElementCollection
|
420
|
+
end
|
421
|
+
|
422
|
+
class Option < Insite::Element
|
423
|
+
end
|
424
|
+
|
425
|
+
class OptionCollection < Insite::ElementCollection
|
426
|
+
end
|
427
|
+
|
428
|
+
class Output < Insite::Element
|
429
|
+
end
|
430
|
+
|
431
|
+
class OutputCollection < Insite::ElementCollection
|
432
|
+
end
|
433
|
+
|
434
|
+
class Paragraph < Insite::Element
|
435
|
+
end
|
436
|
+
|
437
|
+
class ParagraphCollection < Insite::ElementCollection
|
438
|
+
end
|
439
|
+
|
440
|
+
class Param < Insite::Element
|
441
|
+
end
|
442
|
+
|
443
|
+
class ParamCollection < Insite::ElementCollection
|
444
|
+
end
|
445
|
+
|
446
|
+
class Path < Insite::Element
|
447
|
+
end
|
448
|
+
|
449
|
+
class PathCollection < Insite::ElementCollection
|
450
|
+
end
|
451
|
+
|
452
|
+
class Pattern < Insite::Element
|
453
|
+
end
|
454
|
+
|
455
|
+
class PatternCollection < Insite::ElementCollection
|
456
|
+
end
|
457
|
+
|
458
|
+
class Picture < Insite::Element
|
459
|
+
end
|
460
|
+
|
461
|
+
class PictureCollection < Insite::ElementCollection
|
462
|
+
end
|
463
|
+
|
464
|
+
class Polygon < Insite::Element
|
465
|
+
end
|
466
|
+
|
467
|
+
class PolygonCollection < Insite::ElementCollection
|
468
|
+
end
|
469
|
+
|
470
|
+
class Polyline < Insite::Element
|
471
|
+
end
|
472
|
+
|
473
|
+
class PolylineCollection < Insite::ElementCollection
|
474
|
+
end
|
475
|
+
|
476
|
+
class Pre < Insite::Element
|
477
|
+
end
|
478
|
+
|
479
|
+
class PreCollection < Insite::ElementCollection
|
480
|
+
end
|
481
|
+
|
482
|
+
class Progress < Insite::Element
|
483
|
+
end
|
484
|
+
|
485
|
+
class ProgressCollection < Insite::ElementCollection
|
486
|
+
end
|
487
|
+
|
488
|
+
class Quote < Insite::Element
|
489
|
+
end
|
490
|
+
|
491
|
+
class QuoteCollection < Insite::ElementCollection
|
492
|
+
end
|
493
|
+
|
494
|
+
class RadialGradient < Insite::Element
|
495
|
+
end
|
496
|
+
|
497
|
+
class RadialGradientCollection < Insite::ElementCollection
|
498
|
+
end
|
499
|
+
|
500
|
+
class Radio < Insite::Element
|
501
|
+
end
|
502
|
+
|
503
|
+
class RadioCollection < Insite::ElementCollection
|
504
|
+
end
|
505
|
+
|
506
|
+
class Rect < Insite::Element
|
507
|
+
end
|
508
|
+
|
509
|
+
class RectCollection < Insite::ElementCollection
|
510
|
+
end
|
511
|
+
|
512
|
+
class Row < Insite::Element
|
513
|
+
end
|
514
|
+
|
515
|
+
class RowCollection < Insite::ElementCollection
|
516
|
+
end
|
517
|
+
|
518
|
+
class SVG < Insite::Element
|
519
|
+
end
|
520
|
+
|
521
|
+
class SVGCollection < Insite::ElementCollection
|
522
|
+
end
|
523
|
+
|
524
|
+
class SVGElement < Insite::Element
|
525
|
+
end
|
526
|
+
|
527
|
+
class SVGElementCollection < Insite::ElementCollection
|
528
|
+
end
|
529
|
+
|
530
|
+
class Script < Insite::Element
|
531
|
+
end
|
532
|
+
|
533
|
+
class ScriptCollection < Insite::ElementCollection
|
534
|
+
end
|
535
|
+
|
536
|
+
class Select < Insite::Element
|
537
|
+
end
|
538
|
+
|
539
|
+
class SelectCollection < Insite::ElementCollection
|
540
|
+
end
|
541
|
+
|
542
|
+
class Solidcolor < Insite::Element
|
543
|
+
end
|
544
|
+
|
545
|
+
class SolidcolorCollection < Insite::ElementCollection
|
546
|
+
end
|
547
|
+
|
548
|
+
class Source < Insite::Element
|
549
|
+
end
|
550
|
+
|
551
|
+
class SourceCollection < Insite::ElementCollection
|
552
|
+
end
|
553
|
+
|
554
|
+
class Span < Insite::Element
|
555
|
+
end
|
556
|
+
|
557
|
+
class SpanCollection < Insite::ElementCollection
|
558
|
+
end
|
559
|
+
|
560
|
+
class Stop < Insite::Element
|
561
|
+
end
|
562
|
+
|
563
|
+
class StopCollection < Insite::ElementCollection
|
564
|
+
end
|
565
|
+
|
566
|
+
class Style < Insite::Element
|
567
|
+
end
|
568
|
+
|
569
|
+
class StyleCollection < Insite::ElementCollection
|
570
|
+
end
|
571
|
+
|
572
|
+
class Switch < Insite::Element
|
573
|
+
end
|
574
|
+
|
575
|
+
class SwitchCollection < Insite::ElementCollection
|
576
|
+
end
|
577
|
+
|
578
|
+
class Symbol < Insite::Element
|
579
|
+
end
|
580
|
+
|
581
|
+
class SymbolCollection < Insite::ElementCollection
|
582
|
+
end
|
583
|
+
|
584
|
+
class TSpan < Insite::Element
|
585
|
+
end
|
586
|
+
|
587
|
+
class TSpanCollection < Insite::ElementCollection
|
588
|
+
end
|
589
|
+
|
590
|
+
class Table < Insite::Element
|
591
|
+
end
|
592
|
+
|
593
|
+
class TableCaption < Insite::Element
|
594
|
+
end
|
595
|
+
|
596
|
+
class TableCaptionCollection < Insite::ElementCollection
|
597
|
+
end
|
598
|
+
|
599
|
+
class TableCell < Insite::Element
|
600
|
+
end
|
601
|
+
|
602
|
+
class TableCellCollection < Insite::ElementCollection
|
603
|
+
end
|
604
|
+
|
605
|
+
class TableCol < Insite::Element
|
606
|
+
end
|
607
|
+
|
608
|
+
class TableColCollection < Insite::ElementCollection
|
609
|
+
end
|
610
|
+
|
611
|
+
class TableCollection < Insite::ElementCollection
|
612
|
+
end
|
613
|
+
|
614
|
+
class TableDataCell < Insite::Element
|
615
|
+
end
|
616
|
+
|
617
|
+
class TableDataCellCollection < Insite::ElementCollection
|
618
|
+
end
|
619
|
+
|
620
|
+
class TableHeaderCell < Insite::Element
|
621
|
+
end
|
622
|
+
|
623
|
+
class TableHeaderCellCollection < Insite::ElementCollection
|
624
|
+
end
|
625
|
+
|
626
|
+
class TableRow < Insite::Element
|
627
|
+
end
|
628
|
+
|
629
|
+
class TableRowCollection < Insite::ElementCollection
|
630
|
+
end
|
631
|
+
|
632
|
+
class TableSection < Insite::Element
|
633
|
+
end
|
634
|
+
|
635
|
+
class TableSectionCollection < Insite::ElementCollection
|
636
|
+
end
|
637
|
+
|
638
|
+
class Template < Insite::Element
|
639
|
+
end
|
640
|
+
|
641
|
+
class TemplateCollection < Insite::ElementCollection
|
642
|
+
end
|
643
|
+
|
644
|
+
class TextArea < Insite::Element
|
645
|
+
end
|
646
|
+
|
647
|
+
class TextAreaCollection < Insite::ElementCollection
|
648
|
+
end
|
649
|
+
|
650
|
+
class TextContent < Insite::Element
|
651
|
+
end
|
652
|
+
|
653
|
+
class TextContentCollection < Insite::ElementCollection
|
654
|
+
end
|
655
|
+
|
656
|
+
class TextField < Insite::Element
|
657
|
+
end
|
658
|
+
|
659
|
+
class TextFieldCollection < Insite::ElementCollection
|
660
|
+
end
|
661
|
+
|
662
|
+
class TextPath < Insite::Element
|
663
|
+
end
|
664
|
+
|
665
|
+
class TextPathCollection < Insite::ElementCollection
|
666
|
+
end
|
667
|
+
|
668
|
+
class TextPositioning < Insite::Element
|
669
|
+
end
|
670
|
+
|
671
|
+
class TextPositioningCollection < Insite::ElementCollection
|
672
|
+
end
|
673
|
+
|
674
|
+
class Time < Insite::Element
|
675
|
+
end
|
676
|
+
|
677
|
+
class TimeCollection < Insite::ElementCollection
|
678
|
+
end
|
679
|
+
|
680
|
+
class Title < Insite::Element
|
681
|
+
end
|
682
|
+
|
683
|
+
class TitleCollection < Insite::ElementCollection
|
684
|
+
end
|
685
|
+
|
686
|
+
class Track < Insite::Element
|
687
|
+
end
|
688
|
+
|
689
|
+
class TrackCollection < Insite::ElementCollection
|
690
|
+
end
|
691
|
+
|
692
|
+
class UList < Insite::Element
|
693
|
+
end
|
694
|
+
|
695
|
+
class UListCollection < Insite::ElementCollection
|
696
|
+
end
|
697
|
+
|
698
|
+
class Unknown < Insite::Element
|
699
|
+
end
|
700
|
+
|
701
|
+
class UnknownCollection < Insite::ElementCollection
|
702
|
+
end
|
703
|
+
|
704
|
+
class Use < Insite::Element
|
705
|
+
end
|
706
|
+
|
707
|
+
class UseCollection < Insite::ElementCollection
|
708
|
+
end
|
709
|
+
|
710
|
+
class Video < Insite::Element
|
711
|
+
end
|
712
|
+
|
713
|
+
class VideoCollection < Insite::ElementCollection
|
714
|
+
end
|
715
|
+
|
716
|
+
class View < Insite::Element
|
717
|
+
end
|
718
|
+
|
719
|
+
class ViewCollection < Insite::ElementCollection
|
720
|
+
end
|
721
|
+
end
|