-
Notifications
You must be signed in to change notification settings - Fork 0
/
action-site-progress.txt
7457 lines (7457 loc) · 786 KB
/
action-site-progress.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Calling command (3.0)
Diagnosing org.nasdanika.architecture.maven.SiteGeneratorMojo (1.0)
org.nasdanika.maven.AbstractCommandMojo$1@2f95653f
Executing org.nasdanika.architecture.maven.SiteGeneratorMojo (1.0)
org.nasdanika.maven.AbstractCommandMojo$1@2f95653f
Loading semantic model (1.0)
Generating action model (1.0)
Executing Calling resolve() (1.0)
org.nasdanika.html.emf.EObjectActionBuilder$EObjectActionResolverAdapter$1@2976ca51
Generating resource model (1.0)
Calling supplier (3.0)
Diagnosing Supplier collection => Joining content => Object to InputStream (15.0)
org.nasdanika.common.Supplier$1Then@3de45b6c Supplier collection => Joining content => Object to InputStream 15.0
Diagnosing Supplier collection => Joining content (14.0)
org.nasdanika.common.Supplier$1Then@54d60fa1 Supplier collection => Joining content 14.0
Diagnosing Supplier collection (13.0)
org.nasdanika.common.ListCompoundSupplier@1cb849b2 Supplier collection 13.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream (9.0)
org.nasdanika.common.Supplier$1Then@6fe2a366 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream 9.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes (8.0)
org.nasdanika.common.Supplier$1Then@6dd38df2 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes 8.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element (7.0)
org.nasdanika.common.Supplier$1Then@99c3cee Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element 7.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element (6.0)
org.nasdanika.common.Supplier$1Then@57b711b6 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element 6.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (5.0)
org.nasdanika.common.Supplier$1Then@2db461b5 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer 5.0
Diagnosing Bootstrap table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableSupplierFactoryAdapter$1@5c79c5ec
Diagnosing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (4.0)
org.nasdanika.common.Consumer$3@34eaf9c1
Diagnosing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections (3.0)
org.nasdanika.common.Function$1Then@5bbf744b Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections 3.0
Diagnosing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table (3.0)
org.nasdanika.common.Function$1Then@55881f40 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table 3.0
Diagnosing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element (2.0)
org.nasdanika.common.Function$1Then@474ce6b8 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element 2.0
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@248b2b61 Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@4b61e97
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@11d1735e Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@31082efa Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@4ca5cb99
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@7853363c
Diagnosing Table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableConsumerFactoryAdapter$1@6282f1eb
Diagnosing Sections (0.0)
org.nasdanika.common.Consumer$4@120d6cbf
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@70169464
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$2@1115be8c
Diagnosing Bootstrap element to HTML element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$1@64ed18ec
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@1dfcf85a Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@590dea35
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6550ce46 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@69f69078 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@13b29b34
Diagnosing Object to InputStream (1.0)
org.nasdanika.common.Util$2@25589735
Diagnosing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream (4.0)
org.nasdanika.common.Supplier$1Then@46994f26 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream 4.0
Diagnosing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (3.0)
org.nasdanika.common.Supplier$1Then@1bb172dd file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter 3.0
Diagnosing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream (2.0)
org.nasdanika.common.Supplier$1Then@1cdd31a4 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream 2.0
Diagnosing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 (1.0)
org.nasdanika.exec.gen.content.ResourceSupplierFactoryAdapter$1@7dddfc35
Diagnosing Converter to class java.io.InputStream (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@71316cd7
Diagnosing org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (1.0)
org.nasdanika.exec.gen.content.FilterSupplierFactoryAdapter$1@6106dfb6
Diagnosing Object to InputStream (1.0)
org.nasdanika.common.Util$2@14239223
Diagnosing Joining content (1.0)
org.nasdanika.common.Util$10@68df8c6
Diagnosing Object to InputStream (1.0)
org.nasdanika.common.Util$2@7c206b14
Executing Supplier collection => Joining content => Object to InputStream (15.0)
org.nasdanika.common.Supplier$1Then@3de45b6c Supplier collection => Joining content => Object to InputStream 15.0
Executing Supplier collection => Joining content (14.0)
org.nasdanika.common.Supplier$1Then@54d60fa1 Supplier collection => Joining content 14.0
Executing Supplier collection (13.0)
org.nasdanika.common.ListCompoundSupplier@1cb849b2 Supplier collection 13.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream (9.0)
org.nasdanika.common.Supplier$1Then@6fe2a366 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream 9.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes (8.0)
org.nasdanika.common.Supplier$1Then@6dd38df2 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes 8.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element (7.0)
org.nasdanika.common.Supplier$1Then@99c3cee Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element 7.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element (6.0)
org.nasdanika.common.Supplier$1Then@57b711b6 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element 6.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (5.0)
org.nasdanika.common.Supplier$1Then@2db461b5 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer 5.0
Executing Bootstrap table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableSupplierFactoryAdapter$1@5c79c5ec
Executing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (4.0)
org.nasdanika.common.Consumer$3@34eaf9c1
Executing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections (3.0)
org.nasdanika.common.Function$1Then@5bbf744b Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections 3.0
Executing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table (3.0)
org.nasdanika.common.Function$1Then@55881f40 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table 3.0
Executing Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element (2.0)
org.nasdanika.common.Function$1Then@474ce6b8 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element 2.0
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@248b2b61 Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@4b61e97
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@11d1735e Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@31082efa Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@4ca5cb99
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@7853363c
Executing Table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableConsumerFactoryAdapter$1@6282f1eb
Executing Sections (0.0)
org.nasdanika.common.Consumer$4@120d6cbf
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@70169464
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$2@1115be8c
Executing Bootstrap element to HTML element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$1@64ed18ec
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@1dfcf85a Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@590dea35
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6550ce46 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@69f69078 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@13b29b34
Executing Object to InputStream (1.0)
org.nasdanika.common.Util$2@25589735
Executing Scalar (1.0)
org.nasdanika.common.Util$13@23bd2f6e
Executing String to InputStream (1.0)
org.nasdanika.common.Util$1@18e8eb59
Executing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream (4.0)
org.nasdanika.common.Supplier$1Then@46994f26 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream 4.0
Executing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (3.0)
org.nasdanika.common.Supplier$1Then@1bb172dd file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter 3.0
Executing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream (2.0)
org.nasdanika.common.Supplier$1Then@1cdd31a4 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream 2.0
Executing file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 (1.0)
org.nasdanika.exec.gen.content.ResourceSupplierFactoryAdapter$1@7dddfc35
Executing Converter to class java.io.InputStream (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@71316cd7
Executing org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (1.0)
org.nasdanika.exec.gen.content.FilterSupplierFactoryAdapter$1@6106dfb6
Executing Object to InputStream (1.0)
org.nasdanika.common.Util$2@14239223
Executing Joining content (1.0)
org.nasdanika.common.Util$10@68df8c6
Executing Object to InputStream (1.0)
org.nasdanika.common.Util$2@7c206b14
Commiting Supplier collection => Joining content => Object to InputStream (15.0)
org.nasdanika.common.Supplier$1Then@3de45b6c Supplier collection => Joining content => Object to InputStream 15.0
Commiting Object to InputStream (1.0)
org.nasdanika.common.Util$2@7c206b14
Commiting Supplier collection => Joining content (14.0)
org.nasdanika.common.Supplier$1Then@54d60fa1 Supplier collection => Joining content 14.0
Commiting Joining content (1.0)
org.nasdanika.common.Util$10@68df8c6
Commiting Supplier collection (13.0)
org.nasdanika.common.ListCompoundSupplier@1cb849b2 Supplier collection 13.0
Commiting Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream (9.0)
org.nasdanika.common.Supplier$1Then@6fe2a366 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream 9.0
Commiting Object to InputStream (1.0)
org.nasdanika.common.Util$2@25589735
Commiting Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes (8.0)
org.nasdanika.common.Supplier$1Then@6dd38df2 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes 8.0
Commiting Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@1dfcf85a Attributes and Content => Apply attributes 1.0
Commiting Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@13b29b34
Commiting Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@590dea35
Commiting Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6550ce46 Attributes 0.0
Commiting Content (0.0)
org.nasdanika.common.ListCompoundSupplier@69f69078 Content 0.0
Commiting Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element (7.0)
org.nasdanika.common.Supplier$1Then@99c3cee Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element 7.0
Commiting Bootstrap element to HTML element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$1@64ed18ec
Commiting Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element (6.0)
org.nasdanika.common.Supplier$1Then@57b711b6 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element 6.0
Commiting Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$2@1115be8c
Commiting Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (5.0)
org.nasdanika.common.Supplier$1Then@2db461b5 Bootstrap table => Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer 5.0
Commiting Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (4.0)
org.nasdanika.common.Consumer$3@34eaf9c1
Commiting HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@70169464
Commiting Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections (3.0)
org.nasdanika.common.Function$1Then@5bbf744b Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table => Sections 3.0
Commiting Sections (0.0)
org.nasdanika.common.Consumer$4@120d6cbf
Commiting Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table (3.0)
org.nasdanika.common.Function$1Then@55881f40 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element => Table 3.0
Commiting Table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableConsumerFactoryAdapter$1@6282f1eb
Commiting Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element (2.0)
org.nasdanika.common.Function$1Then@474ce6b8 Attributes and Content => Apply attributes => Retrieving wrapping bootstrap element 2.0
Commiting Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@7853363c
Commiting Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@248b2b61 Attributes and Content => Apply attributes 1.0
Commiting Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@4ca5cb99
Commiting Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@4b61e97
Commiting Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@11d1735e Attributes 0.0
Commiting Content (0.0)
org.nasdanika.common.ListCompoundSupplier@31082efa Content 0.0
Commiting Bootstrap table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableSupplierFactoryAdapter$1@5c79c5ec
Commiting file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream (4.0)
org.nasdanika.common.Supplier$1Then@46994f26 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter => Object to InputStream 4.0
Commiting Object to InputStream (1.0)
org.nasdanika.common.Util$2@14239223
Commiting file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (3.0)
org.nasdanika.common.Supplier$1Then@1bb172dd file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream => org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter 3.0
Commiting org.nasdanika.exec.gen.content.MarkdownSupplierFactoryAdapter (1.0)
org.nasdanika.exec.gen.content.FilterSupplierFactoryAdapter$1@6106dfb6
Commiting file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream (2.0)
org.nasdanika.common.Supplier$1Then@1cdd31a4 file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 => Converter to class java.io.InputStream 2.0
Commiting Converter to class java.io.InputStream (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@71316cd7
Commiting file:/C:/Users/Pavel/git/demo-architecture/architecture.yml 9:9 (1.0)
org.nasdanika.exec.gen.content.ResourceSupplierFactoryAdapter$1@7dddfc35
[SUCCESS 1.0] [Action content] Internet Banking System -> b2ad1479-efe6-44cf-9ef0-7c6f1c8de511.html
[SUCCESS 1.0] [Page content] Internet Banking System -> pages/f37fcd2b-71d0-47ee-a8f2-1c8532fb5007.html
Calling supplier (3.0)
Diagnosing Supplier collection => Joining content => Object to InputStream (63.0)
org.nasdanika.common.Supplier$1Then@3b64f131 Supplier collection => Joining content => Object to InputStream 63.0
Diagnosing Supplier collection => Joining content (62.0)
org.nasdanika.common.Supplier$1Then@490d9c41 Supplier collection => Joining content 62.0
Diagnosing Supplier collection (61.0)
org.nasdanika.common.ListCompoundSupplier@47d81427 Supplier collection 61.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream (61.0)
org.nasdanika.common.Supplier$1Then@3c5e4aac Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream 61.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes (60.0)
org.nasdanika.common.Supplier$1Then@20afd96f Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes 60.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element (59.0)
org.nasdanika.common.Supplier$1Then@565a6af Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element 59.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element (58.0)
org.nasdanika.common.Supplier$1Then@21bf308 Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element 58.0
Diagnosing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (57.0)
org.nasdanika.common.Supplier$1Then@4cded2cd Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer 57.0
Diagnosing Bootstrap table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableSupplierFactoryAdapter$1@12e40e98
Diagnosing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (56.0)
org.nasdanika.common.Consumer$3@3a9c92b5
Diagnosing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections (55.0)
org.nasdanika.common.Function$1Then@67c2b55d Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections 55.0
Diagnosing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table (55.0)
org.nasdanika.common.Function$1Then@5db04bd2 Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table 55.0
Diagnosing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element (54.0)
org.nasdanika.common.Function$1Then@6f921e32 Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element 54.0
Diagnosing Attributes and Content => Apply attributes => Creating rows (53.0)
org.nasdanika.common.Function$1Then@31c5304f Attributes and Content => Apply attributes => Creating rows 53.0
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@43df1377 Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@1cee3e05
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@63f2d024 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@7b2dd35d Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@405223e4
Diagnosing Creating rows (52.0)
org.nasdanika.common.Consumer$3@2d2133fd
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer (21.0)
org.nasdanika.common.Function$2Then@58a7a58d Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer 21.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells (20.0)
org.nasdanika.common.Function$1Then@4d8522ff Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells 20.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@1c9975a8 Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes 4.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@3883031d Retrieving wrapping bootstrap element => Table row => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table row (2.0)
org.nasdanika.common.Function$1Then@5d6d424d Retrieving wrapping bootstrap element => Table row 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@391b01c5
Diagnosing Table row (1.0)
org.nasdanika.html.model.bootstrap.gen.TableRowConsumerFactoryAdapter$1@6e78177b
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@4ec37a42
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@798b36fd Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@18ff1520
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@36120a8b Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@63d66761 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@434a8938
Diagnosing Creating cells (16.0)
org.nasdanika.common.Consumer$3@237cd264
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@51cd2d2 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@5521407f Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@42b500aa Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@71f056a Retrieving wrapping bootstrap element => Table cell 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@64f6dd19
Diagnosing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@3b8b5b40
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@5151accb
Diagnosing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@2e1ad7de Attributes and Content => Apply attributes 4.0
Diagnosing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@7c56c911
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@1de6dc80 Attributes 0.0
Diagnosing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@418d1c03 Content 3.0
Diagnosing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@395197cb Features => Label => Attributes and Content => Apply attributes 3.0
Diagnosing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@7305cfb1 Features => Label 2.0
Diagnosing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@582c1f8d Features 1.0
Diagnosing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@71687d8f Empty supplier => Label text and icon 1.0
Diagnosing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Diagnosing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@191774d6
Diagnosing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@21ffc00e
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@134955bb Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@45b08b17
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6723e6b3 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@3883b5e9 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@61becbcf
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@20171cdc
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@58f97013
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@7d70ba18 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@6a07e6ca Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@726ef6aa Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@6104691c Retrieving wrapping bootstrap element => Table cell 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@195cbf5e
Diagnosing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@4cb82b09
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@49665f92
Diagnosing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@b68932b Attributes and Content => Apply attributes 4.0
Diagnosing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@77b27b57
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7adff6cb Attributes 0.0
Diagnosing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@13ebccd Content 3.0
Diagnosing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@4e80960a Features => Label => Attributes and Content => Apply attributes 3.0
Diagnosing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@2a0c244e Features => Label 2.0
Diagnosing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@2f60e66a Features 1.0
Diagnosing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@5bccef9f Empty supplier => Label text and icon 1.0
Diagnosing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Diagnosing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@1136122a
Diagnosing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@5a537a16
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@72288480 Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@4ea43d4d
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6f22c1f1 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@2ee095c9 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@185a0811
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@77fb1002
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@e2f6a45
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@24cbf894
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer (31.0)
org.nasdanika.common.Function$2Then@6c19769c Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer 31.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells (30.0)
org.nasdanika.common.Function$1Then@434d001d Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells 30.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@36453773 Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes 4.0
Diagnosing Retrieving wrapping bootstrap element => Table row => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@4db16677 Retrieving wrapping bootstrap element => Table row => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table row (2.0)
org.nasdanika.common.Function$1Then@6abb44cb Retrieving wrapping bootstrap element => Table row 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@41ddec69
Diagnosing Table row (1.0)
org.nasdanika.html.model.bootstrap.gen.TableRowConsumerFactoryAdapter$1@5e3cb58e
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@18f8e2e0
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@28d56028 Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@6c56fff
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@3dee3a6c Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@62de20d3 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@6109d880
Diagnosing Creating cells (26.0)
org.nasdanika.common.Consumer$3@4c9ef9c9
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@6f976c Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@1324e70a Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@3cc6f036 Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@72d16d6 Retrieving wrapping bootstrap element => Table cell 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@7b0525a8
Diagnosing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@4f2d8175
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@44618fe6
Diagnosing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@2b15ba1a Attributes and Content => Apply attributes 4.0
Diagnosing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@796fe2b5
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@5a6af2c4 Attributes 0.0
Diagnosing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@123c48d0 Content 3.0
Diagnosing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@14fff5e7 Features => Label => Attributes and Content => Apply attributes 3.0
Diagnosing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@1203d787 Features => Label 2.0
Diagnosing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@1f72fbd1 Features 1.0
Diagnosing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@6f785a27 Empty supplier => Label text and icon 1.0
Diagnosing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Diagnosing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@443dae2
Diagnosing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@8f09a02
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@5454be Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@2dd08ff1
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@37dec463 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@3bf26810 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@19213a74
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@30a791a6
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@719bb60d
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (18.0)
org.nasdanika.common.Function$2Then@5981f2c6 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 18.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (17.0)
org.nasdanika.common.Function$1Then@49639118 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 17.0
Diagnosing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@45451333 Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Diagnosing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@6942ee48 Retrieving wrapping bootstrap element => Table cell 2.0
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@3f033664
Diagnosing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@6abd8bcd
Diagnosing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@70cd122
Diagnosing Attributes and Content => Apply attributes (14.0)
org.nasdanika.common.Function$1Then@79424f25 Attributes and Content => Apply attributes 14.0
Diagnosing Attributes and Content (13.0)
org.nasdanika.common.Supplier$6@5fd4e67f
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@59b1edab Attributes 0.0
Diagnosing Content (13.0)
org.nasdanika.common.ListCompoundSupplier@3855b27e Content 13.0
Diagnosing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (13.0)
org.nasdanika.common.Supplier$1Then@5305f936 Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 13.0
Diagnosing Tag => Attributes and Content => Apply attributes (12.0)
org.nasdanika.common.Supplier$1Then@2b1a1a37 Tag => Attributes and Content => Apply attributes 12.0
Diagnosing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@7d90764a
Diagnosing Attributes and Content => Apply attributes (11.0)
org.nasdanika.common.Function$1Then@6843fdc4 Attributes and Content => Apply attributes 11.0
Diagnosing Attributes and Content (10.0)
org.nasdanika.common.Supplier$6@147375b3
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6f430ea8 Attributes 0.0
Diagnosing Content (10.0)
org.nasdanika.common.ListCompoundSupplier@119f072c Content 10.0
Diagnosing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (5.0)
org.nasdanika.common.Supplier$1Then@66456506 Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 5.0
Diagnosing Tag => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Supplier$1Then@69944a90 Tag => Attributes and Content => Apply attributes 4.0
Diagnosing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@1ed52f44
Diagnosing Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Function$1Then@771afdd5 Attributes and Content => Apply attributes 3.0
Diagnosing Attributes and Content (2.0)
org.nasdanika.common.Supplier$6@3abadb65
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7131d668 Attributes 0.0
Diagnosing Content (2.0)
org.nasdanika.common.ListCompoundSupplier@46a97805 Content 2.0
Diagnosing Text => Converter to class java.lang.Object (2.0)
org.nasdanika.common.Supplier$1Then@667dd150 Text => Converter to class java.lang.Object 2.0
Diagnosing Text (1.0)
org.nasdanika.exec.gen.content.TextSupplierFactoryAdapter$1@af04f09
Diagnosing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@758d4aa9
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@78e97d4d
Diagnosing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@7096d451
Diagnosing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (5.0)
org.nasdanika.common.Supplier$1Then@7816454d Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 5.0
Diagnosing Tag => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Supplier$1Then@67d180e4 Tag => Attributes and Content => Apply attributes 4.0
Diagnosing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@54e18a46
Diagnosing Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Function$1Then@1293f8d7 Attributes and Content => Apply attributes 3.0
Diagnosing Attributes and Content (2.0)
org.nasdanika.common.Supplier$6@58e5fbe5
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@335896bd Attributes 0.0
Diagnosing Content (2.0)
org.nasdanika.common.ListCompoundSupplier@6b33892a Content 2.0
Diagnosing Text => Converter to class java.lang.Object (2.0)
org.nasdanika.common.Supplier$1Then@666b91db Text => Converter to class java.lang.Object 2.0
Diagnosing Text (1.0)
org.nasdanika.exec.gen.content.TextSupplierFactoryAdapter$1@11a67420
Diagnosing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@663cf5d7
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@11b14ae3
Diagnosing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@2b6ee447
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@9cb927e
Diagnosing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@8585cdd
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@1325f967
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@4f356b98
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@1ab85862
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@504c415c
Diagnosing Table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableConsumerFactoryAdapter$1@6c9e74f3
Diagnosing Sections (0.0)
org.nasdanika.common.Consumer$4@813ab53
Diagnosing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@5030997b
Diagnosing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$2@62c47480
Diagnosing Bootstrap element to HTML element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$1@7de2bdc7
Diagnosing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@683ed81b Attributes and Content => Apply attributes 1.0
Diagnosing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@3c116f26
Diagnosing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7db06c50 Attributes 0.0
Diagnosing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@1554eaa4 Content 0.0
Diagnosing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@b340615
Diagnosing Object to InputStream (1.0)
org.nasdanika.common.Util$2@3c6b300a
Diagnosing Joining content (1.0)
org.nasdanika.common.Util$10@68df8c6
Diagnosing Object to InputStream (1.0)
org.nasdanika.common.Util$2@4247093b
Executing Supplier collection => Joining content => Object to InputStream (63.0)
org.nasdanika.common.Supplier$1Then@3b64f131 Supplier collection => Joining content => Object to InputStream 63.0
Executing Supplier collection => Joining content (62.0)
org.nasdanika.common.Supplier$1Then@490d9c41 Supplier collection => Joining content 62.0
Executing Supplier collection (61.0)
org.nasdanika.common.ListCompoundSupplier@47d81427 Supplier collection 61.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream (61.0)
org.nasdanika.common.Supplier$1Then@3c5e4aac Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes => Object to InputStream 61.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes (60.0)
org.nasdanika.common.Supplier$1Then@20afd96f Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element => Attributes and Content => Apply attributes 60.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element (59.0)
org.nasdanika.common.Supplier$1Then@565a6af Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element => Bootstrap element to HTML element 59.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element (58.0)
org.nasdanika.common.Supplier$1Then@21bf308 Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer => Retrieving wrapping bootstrap element 58.0
Executing Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (57.0)
org.nasdanika.common.Supplier$1Then@4cded2cd Bootstrap table => Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer 57.0
Executing Bootstrap table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableSupplierFactoryAdapter$1@12e40e98
Executing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections => HTML Element Consumer (56.0)
org.nasdanika.common.Consumer$3@3a9c92b5
Executing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections (55.0)
org.nasdanika.common.Function$1Then@67c2b55d Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table => Sections 55.0
Executing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table (55.0)
org.nasdanika.common.Function$1Then@5db04bd2 Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element => Table 55.0
Executing Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element (54.0)
org.nasdanika.common.Function$1Then@6f921e32 Attributes and Content => Apply attributes => Creating rows => Retrieving wrapping bootstrap element 54.0
Executing Attributes and Content => Apply attributes => Creating rows (53.0)
org.nasdanika.common.Function$1Then@31c5304f Attributes and Content => Apply attributes => Creating rows 53.0
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@43df1377 Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@1cee3e05
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@63f2d024 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@7b2dd35d Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@405223e4
Executing Creating rows (52.0)
org.nasdanika.common.Consumer$3@2d2133fd
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer (21.0)
org.nasdanika.common.Function$2Then@58a7a58d Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer 21.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells (20.0)
org.nasdanika.common.Function$1Then@4d8522ff Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells 20.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@1c9975a8 Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes 4.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@3883031d Retrieving wrapping bootstrap element => Table row => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table row (2.0)
org.nasdanika.common.Function$1Then@5d6d424d Retrieving wrapping bootstrap element => Table row 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@391b01c5
Executing Table row (1.0)
org.nasdanika.html.model.bootstrap.gen.TableRowConsumerFactoryAdapter$1@6e78177b
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@4ec37a42
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@798b36fd Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@18ff1520
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@36120a8b Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@63d66761 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@434a8938
Executing Creating cells (16.0)
org.nasdanika.common.Consumer$3@237cd264
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@51cd2d2 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@5521407f Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@42b500aa Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@71f056a Retrieving wrapping bootstrap element => Table cell 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@64f6dd19
Executing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@3b8b5b40
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@5151accb
Executing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@2e1ad7de Attributes and Content => Apply attributes 4.0
Executing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@7c56c911
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@1de6dc80 Attributes 0.0
Executing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@418d1c03 Content 3.0
Executing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@395197cb Features => Label => Attributes and Content => Apply attributes 3.0
Executing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@7305cfb1 Features => Label 2.0
Executing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@582c1f8d Features 1.0
Executing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@71687d8f Empty supplier => Label text and icon 1.0
Executing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Executing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@191774d6
Executing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@21ffc00e
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@134955bb Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@45b08b17
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6723e6b3 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@3883b5e9 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@61becbcf
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@20171cdc
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@58f97013
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@7d70ba18 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@6a07e6ca Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@726ef6aa Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@6104691c Retrieving wrapping bootstrap element => Table cell 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@195cbf5e
Executing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@4cb82b09
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@49665f92
Executing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@b68932b Attributes and Content => Apply attributes 4.0
Executing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@77b27b57
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7adff6cb Attributes 0.0
Executing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@13ebccd Content 3.0
Executing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@4e80960a Features => Label => Attributes and Content => Apply attributes 3.0
Executing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@2a0c244e Features => Label 2.0
Executing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@2f60e66a Features 1.0
Executing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@5bccef9f Empty supplier => Label text and icon 1.0
Executing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Executing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@1136122a
Executing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@5a537a16
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@72288480 Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@4ea43d4d
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6f22c1f1 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@2ee095c9 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@185a0811
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@77fb1002
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@e2f6a45
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@24cbf894
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer (31.0)
org.nasdanika.common.Function$2Then@6c19769c Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells => HTML Element Consumer 31.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells (30.0)
org.nasdanika.common.Function$1Then@434d001d Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes => Creating cells 30.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@36453773 Retrieving wrapping bootstrap element => Table row => To HTML elment => Attributes and Content => Apply attributes 4.0
Executing Retrieving wrapping bootstrap element => Table row => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@4db16677 Retrieving wrapping bootstrap element => Table row => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table row (2.0)
org.nasdanika.common.Function$1Then@6abb44cb Retrieving wrapping bootstrap element => Table row 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@41ddec69
Executing Table row (1.0)
org.nasdanika.html.model.bootstrap.gen.TableRowConsumerFactoryAdapter$1@5e3cb58e
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@18f8e2e0
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@28d56028 Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@6c56fff
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@3dee3a6c Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@62de20d3 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@6109d880
Executing Creating cells (26.0)
org.nasdanika.common.Consumer$3@4c9ef9c9
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (8.0)
org.nasdanika.common.Function$2Then@6f976c Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 8.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (7.0)
org.nasdanika.common.Function$1Then@1324e70a Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 7.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@3cc6f036 Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@72d16d6 Retrieving wrapping bootstrap element => Table cell 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@7b0525a8
Executing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@4f2d8175
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@44618fe6
Executing Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Function$1Then@2b15ba1a Attributes and Content => Apply attributes 4.0
Executing Attributes and Content (3.0)
org.nasdanika.common.Supplier$6@796fe2b5
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@5a6af2c4 Attributes 0.0
Executing Content (3.0)
org.nasdanika.common.ListCompoundSupplier@123c48d0 Content 3.0
Executing Features => Label => Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Supplier$1Then@14fff5e7 Features => Label => Attributes and Content => Apply attributes 3.0
Executing Features => Label (2.0)
org.nasdanika.common.Supplier$1Then@1203d787 Features => Label 2.0
Executing Features (1.0)
org.nasdanika.common.MapCompoundSupplier@1f72fbd1 Features 1.0
Executing Empty supplier => Label text and icon (1.0)
org.nasdanika.common.Supplier$1Then@6f785a27 Empty supplier => Label text and icon 1.0
Executing Empty supplier (0.0)
org.nasdanika.common.Supplier$1@443253a6
Executing Label text and icon (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$2@443dae2
Executing Label (1.0)
org.nasdanika.html.model.app.gen.LabelTagSupplierFactoryAdapter$1@8f09a02
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@5454be Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@2dd08ff1
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@37dec463 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@3bf26810 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@19213a74
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@30a791a6
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@719bb60d
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer (18.0)
org.nasdanika.common.Function$2Then@5981f2c6 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes => HTML Element Consumer 18.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes (17.0)
org.nasdanika.common.Function$1Then@49639118 Retrieving wrapping bootstrap element => Table cell => To HTML elment => Attributes and Content => Apply attributes 17.0
Executing Retrieving wrapping bootstrap element => Table cell => To HTML elment (3.0)
org.nasdanika.common.Function$1Then@45451333 Retrieving wrapping bootstrap element => Table cell => To HTML elment 3.0
Executing Retrieving wrapping bootstrap element => Table cell (2.0)
org.nasdanika.common.Function$1Then@6942ee48 Retrieving wrapping bootstrap element => Table cell 2.0
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@3f033664
Executing Table cell (1.0)
org.nasdanika.html.model.bootstrap.gen.TableCellConsumerFactoryAdapter$1@6abd8bcd
Executing To HTML elment (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$2@70cd122
Executing Attributes and Content => Apply attributes (14.0)
org.nasdanika.common.Function$1Then@79424f25 Attributes and Content => Apply attributes 14.0
Executing Attributes and Content (13.0)
org.nasdanika.common.Supplier$6@5fd4e67f
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@59b1edab Attributes 0.0
Executing Content (13.0)
org.nasdanika.common.ListCompoundSupplier@3855b27e Content 13.0
Executing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (13.0)
org.nasdanika.common.Supplier$1Then@5305f936 Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 13.0
Executing Tag => Attributes and Content => Apply attributes (12.0)
org.nasdanika.common.Supplier$1Then@2b1a1a37 Tag => Attributes and Content => Apply attributes 12.0
Executing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@7d90764a
Executing Attributes and Content => Apply attributes (11.0)
org.nasdanika.common.Function$1Then@6843fdc4 Attributes and Content => Apply attributes 11.0
Executing Attributes and Content (10.0)
org.nasdanika.common.Supplier$6@147375b3
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@6f430ea8 Attributes 0.0
Executing Content (10.0)
org.nasdanika.common.ListCompoundSupplier@119f072c Content 10.0
Executing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (5.0)
org.nasdanika.common.Supplier$1Then@66456506 Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 5.0
Executing Tag => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Supplier$1Then@69944a90 Tag => Attributes and Content => Apply attributes 4.0
Executing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@1ed52f44
Executing Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Function$1Then@771afdd5 Attributes and Content => Apply attributes 3.0
Executing Attributes and Content (2.0)
org.nasdanika.common.Supplier$6@3abadb65
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7131d668 Attributes 0.0
Executing Content (2.0)
org.nasdanika.common.ListCompoundSupplier@46a97805 Content 2.0
Executing Text => Converter to class java.lang.Object (2.0)
org.nasdanika.common.Supplier$1Then@667dd150 Text => Converter to class java.lang.Object 2.0
Executing Text (1.0)
org.nasdanika.exec.gen.content.TextSupplierFactoryAdapter$1@af04f09
Executing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@758d4aa9
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@78e97d4d
Executing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@7096d451
Executing Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object (5.0)
org.nasdanika.common.Supplier$1Then@7816454d Tag => Attributes and Content => Apply attributes => Converter to class java.lang.Object 5.0
Executing Tag => Attributes and Content => Apply attributes (4.0)
org.nasdanika.common.Supplier$1Then@67d180e4 Tag => Attributes and Content => Apply attributes 4.0
Executing Tag (1.0)
org.nasdanika.html.model.html.gen.TagSupplierFactoryAdapter$1@54e18a46
Executing Attributes and Content => Apply attributes (3.0)
org.nasdanika.common.Function$1Then@1293f8d7 Attributes and Content => Apply attributes 3.0
Executing Attributes and Content (2.0)
org.nasdanika.common.Supplier$6@58e5fbe5
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@335896bd Attributes 0.0
Executing Content (2.0)
org.nasdanika.common.ListCompoundSupplier@6b33892a Content 2.0
Executing Text => Converter to class java.lang.Object (2.0)
org.nasdanika.common.Supplier$1Then@666b91db Text => Converter to class java.lang.Object 2.0
Executing Text (1.0)
org.nasdanika.exec.gen.content.TextSupplierFactoryAdapter$1@11a67420
Executing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@663cf5d7
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@11b14ae3
Executing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@2b6ee447
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@9cb927e
Executing Converter to class java.lang.Object (1.0)
org.nasdanika.emf.EObjectAdaptable$2$1@8585cdd
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@1325f967
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@4f356b98
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@1ab85862
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementConsumerFactoryAdapter$1@504c415c
Executing Table (1.0)
org.nasdanika.html.model.bootstrap.gen.TableConsumerFactoryAdapter$1@6c9e74f3
Executing Sections (0.0)
org.nasdanika.common.Consumer$4@813ab53
Executing HTML Element Consumer (1.0)
org.nasdanika.html.model.html.gen.HtmlElementConsumerFactoryAdapter$1@5030997b
Executing Retrieving wrapping bootstrap element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$2@62c47480
Executing Bootstrap element to HTML element (1.0)
org.nasdanika.html.model.bootstrap.gen.BootstrapElementSupplierFactoryAdapter$1@7de2bdc7
Executing Attributes and Content => Apply attributes (1.0)
org.nasdanika.common.Function$1Then@683ed81b Attributes and Content => Apply attributes 1.0
Executing Attributes and Content (0.0)
org.nasdanika.common.Supplier$6@3c116f26
Executing Attributes (0.0)
org.nasdanika.common.MapCompoundSupplier@7db06c50 Attributes 0.0
Executing Content (0.0)
org.nasdanika.common.ListCompoundSupplier@1554eaa4 Content 0.0
Executing Apply attributes (1.0)
org.nasdanika.html.model.html.gen.HtmlElementAdapter$1@b340615
Executing Object to InputStream (1.0)
org.nasdanika.common.Util$2@3c6b300a
Executing Scalar (1.0)
org.nasdanika.common.Util$13@7a34505a
Executing String to InputStream (1.0)
org.nasdanika.common.Util$1@55b45ea1
Executing Joining content (1.0)
org.nasdanika.common.Util$10@68df8c6
Executing Object to InputStream (1.0)
org.nasdanika.common.Util$2@4247093b
Commiting Supplier collection => Joining content => Object to InputStream (63.0)
org.nasdanika.common.Supplier$1Then@3b64f131 Supplier collection => Joining content => Object to InputStream 63.0
Commiting Object to InputStream (1.0)
org.nasdanika.common.Util$2@4247093b