-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZettelkastenFX.mse
29971 lines (29971 loc) · 818 KB
/
ZettelkastenFX.mse
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
(
(FAMIX.Class (id: 1)
(name 'ItemSelectable')
(container (ref: 1010))
(isInterface true)
(isStub true)
(modifiers 'public'))
(FAMIX.Invocation (id: 2)
(astStartPosition 2816)
(astStopPosition 2822)
(candidates (ref: 457))
(sender (ref: 295))
(signature 'new SButton("Close")'))
(FAMIX.Access (id: 3)
(accessor (ref: 5099))
(astStartPosition 2693)
(astStopPosition 2694)
(variable (ref: 5448)))
(FAMIX.Attribute (id: 4)
(name 'SELECTED')
(declaredType (ref: 4942))
(parentType (ref: 4538)))
(FAMIX.Attribute (id: 5)
(name 'titleRequired')
(astStartPosition 2578)
(astStopPosition 2590)
(declaredType (ref: 1344))
(modifiers 'package')
(parentType (ref: 22)))
(FAMIX.Method (id: 6)
(name 'toString')
(declaredType (ref: 2142))
(isStub true)
(modifiers 'synchronized' 'public')
(parentType (ref: 2565))
(signature 'toString()'))
(FAMIX.Invocation (id: 7)
(astStartPosition 5000)
(astStopPosition 5002)
(candidates (ref: 1792))
(receiver (ref: 3034))
(sender (ref: 3447))
(signature 'datasets.eol()'))
(FAMIX.Invocation (id: 8)
(astStartPosition 2785)
(astStopPosition 2794)
(candidates (ref: 4520))
(sender (ref: 5415))
(signature 'this.setEnabled(ena)'))
(FAMIX.Parameter (id: 9)
(name 'fieldValue')
(declaredType (ref: 3494))
(parentBehaviouralEntity (ref: 3465)))
(FAMIX.Access (id: 10)
(accessor (ref: 295))
(astStartPosition 2644)
(astStopPosition 2651)
(isWrite true)
(variable (ref: 3640)))
(FAMIX.Inheritance (id: 11)
(subclass (ref: 2672))
(superclass (ref: 4959)))
(FAMIX.Method (id: 12)
(name 'Time')
(astStartPosition 803)
(astStopPosition 806)
(cyclomaticComplexity 1)
(kind 'constructor')
(modifiers 'package')
(parentType (ref: 3924))
(signature 'Time(double)'))
(FAMIX.Inheritance (id: 13)
(subclass (ref: 2546))
(superclass (ref: 4898)))
(FAMIX.Access (id: 14)
(accessor (ref: 789))
(astStartPosition 9291)
(astStopPosition 9303)
(variable (ref: 5398)))
(FAMIX.AnnotationInstance (id: 15)
(annotatedEntity (ref: 951))
(annotationType (ref: 3206))
(astStartPosition 2350)
(astStopPosition 2377))
(FAMIX.Invocation (id: 16)
(astStartPosition 4790)
(astStopPosition 4798)
(candidates (ref: 103))
(sender (ref: 3244))
(signature 'new TextField(10)'))
(FAMIX.Access (id: 17)
(accessor (ref: 1516))
(astStartPosition 1229)
(astStopPosition 1239)
(variable (ref: 3168)))
(FAMIX.LocalVariable (id: 18)
(name 'valueOf')
(declaredType (ref: 2872))
(isStub true)
(parentBehaviouralEntity (ref: 1963)))
(FAMIX.Invocation (id: 19)
(astStartPosition 1139)
(astStopPosition 1156)
(candidates (ref: 1751))
(sender (ref: 2649))
(signature 'new SComboBox<Integer>(days)'))
(FAMIX.Class (id: 20)
(name 'ZettelListViewCell')
(astStartPosition 139)
(astStopPosition 156)
(container (ref: 1043))
(modifiers 'public'))
(FAMIX.Invocation (id: 21)
(astStartPosition 6151)
(astStopPosition 6164)
(candidates (ref: 785))
(receiver (ref: 5280))
(sender (ref: 545))
(signature 'g.getFontMetrics()'))
(FAMIX.Class (id: 22)
(name 'Dataset')
(astStartPosition 2274)
(astStopPosition 2280)
(container (ref: 4839))
(modifiers 'private'))
(FAMIX.Comment (id: 23)
(container (ref: 4606))
(content '/**
* Returns the root node loaded from the FXML.
* @param < T > root node type
* @return the root node
* @see FXMLLoader#getRoot()
*/
'))
(FAMIX.Access (id: 24)
(accessor (ref: 789))
(astStartPosition 9466)
(astStopPosition 9471)
(variable (ref: 950)))
(FAMIX.LocalVariable (id: 25)
(name 'jaxbContext')
(declaredType (ref: 2587))
(isStub true)
(parentBehaviouralEntity (ref: 261)))
(FAMIX.Access (id: 26)
(accessor (ref: 1311))
(astStartPosition 1018)
(astStopPosition 1020)
(variable (ref: 4289)))
(FAMIX.Inheritance (id: 27)
(subclass (ref: 2712))
(superclass (ref: 3494)))
(FAMIX.Invocation (id: 28)
(astStartPosition 3892)
(astStopPosition 3897)
(candidates (ref: 394))
(sender (ref: 1960))
(signature 'o.orElse("ERROR!")'))
(FAMIX.Namespace (id: 29)
(name 'beans')
(isStub true)
(parentScope (ref: 1024)))
(FAMIX.Namespace (id: 30)
(name 'swing')
(isStub true)
(parentScope (ref: 3139)))
(FAMIX.Inheritance (id: 31)
(subclass (ref: 222))
(superclass (ref: 3494)))
(FAMIX.IndexedFileAnchor (id: 32)
(element (ref: 3846))
(endPos 8077)
(fileName 'src/main/java/javagently/Graph.java')
(startPos 7924))
(FAMIX.Invocation (id: 33)
(astStartPosition 5742)
(astStopPosition 5749)
(candidates (ref: 2271))
(receiver (ref: 5280))
(sender (ref: 545))
(signature 'g.drawLine(xOrigin,yBorder - 5,xOrigin,yAxisLength + yBorder + 5)'))
(FAMIX.Parameter (id: 34)
(name 'propertiesProvider')
(declaredType (ref: 920))
(parentBehaviouralEntity (ref: 4865)))
(FAMIX.Invocation (id: 35)
(astStartPosition 626)
(astStopPosition 629)
(candidates (ref: 3512))
(sender (ref: 4684))
(signature 'Transaction.post(() -> SwingUtilities.invokeLater(() -> {
setText(text.sample());
}
))'))
(FAMIX.Method (id: 36)
(name 'ScrollPane')
(isStub true)
(kind 'constructor')
(modifiers 'public')
(parentType (ref: 2513))
(signature 'ScrollPane(int)'))
(FAMIX.Invocation (id: 37)
(astStartPosition 4325)
(astStopPosition 4331)
(candidates (ref: 3920))
(receiver (ref: 3313))
(sender (ref: 1730))
(signature 'out.println(s)'))
(FAMIX.Attribute (id: 38)
(name 'count')
(astStartPosition 2489)
(astStopPosition 2493)
(declaredType (ref: 4942))
(modifiers 'package')
(parentType (ref: 22)))
(FAMIX.Inheritance (id: 39)
(subclass (ref: 1783))
(superclass (ref: 1774)))
(FAMIX.Access (id: 40)
(accessor (ref: 1782))
(astStartPosition 6361)
(astStopPosition 6365)
(variable (ref: 4573)))
(FAMIX.LocalVariable (id: 41)
(name 'bufferedReader')
(declaredType (ref: 813))
(isStub true)
(parentBehaviouralEntity (ref: 3406)))
(FAMIX.Inheritance (id: 42)
(subclass (ref: 1770))
(superclass (ref: 3494)))
(FAMIX.Method (id: 43)
(name 'FlowLayout')
(isStub true)
(kind 'constructor')
(modifiers 'public')
(parentType (ref: 4094))
(signature 'FlowLayout(int, int, int)'))
(FAMIX.Invocation (id: 44)
(astStartPosition 11990)
(astStopPosition 11992)
(candidates (ref: 5486))
(receiver (ref: 829))
(sender (ref: 2484))
(signature 'PRIMITIVES_TO_WRAPPERS.put(boolean.class,Boolean.class)'))
(FAMIX.ParameterizedType (id: 45)
(name 'HashSet<E>')
(arguments (ref: 3337))
(container (ref: 3550))
(isStub true)
(modifiers 'public')
(parameterizableClass (ref: 764)))
(FAMIX.Parameter (id: 46)
(name 'aModel')
(declaredType (ref: 593))
(parentBehaviouralEntity (ref: 3420)))
(FAMIX.Access (id: 47)
(accessor (ref: 4592))
(astStartPosition 3807)
(astStopPosition 3811)
(variable (ref: 1433)))
(FAMIX.Class (id: 48)
(name 'TextComponent')
(container (ref: 1010))
(isStub true)
(modifiers 'public'))
(FAMIX.Comment (id: 49)
(container (ref: 4655))
(content '/**
* The Inject annotation is optional. If client app uses it - it should add it to the classpath, otherwise we should not require its presence.
*/
'))
(FAMIX.Access (id: 50)
(accessor (ref: 2106))
(astStartPosition 2538)
(astStopPosition 2558)
(variable (ref: 5223)))
(FAMIX.Invocation (id: 51)
(astStartPosition 1401)
(astStopPosition 1405)
(candidates (ref: 2978))
(sender (ref: 4387))
(signature 'Optional.empty()'))
(FAMIX.CaughtException (id: 52)
(definingMethod (ref: 3269))
(exceptionClass (ref: 2101)))
(FAMIX.Access (id: 53)
(accessor (ref: 4863))
(astStartPosition 641)
(astStopPosition 645))
(FAMIX.Attribute (id: 54)
(name 'btnLoad')
(astStartPosition 794)
(astStopPosition 800)
(declaredType (ref: 903))
(modifiers 'public')
(parentType (ref: 4683)))
(FAMIX.Namespace (id: 55)
(name 'input')
(isStub true)
(parentScope (ref: 4075)))
(FAMIX.Access (id: 56)
(accessor (ref: 2484))
(astStartPosition 2755)
(astStopPosition 2759))
(FAMIX.Attribute (id: 57)
(name 'spaces')
(astStartPosition 3646)
(astStopPosition 3676)
(declaredType (ref: 2142))
(hasClassScope true)
(modifiers 'private' 'final')
(parentType (ref: 1197)))
(FAMIX.Access (id: 58)
(accessor (ref: 545))
(astStartPosition 6214)
(astStopPosition 6220)
(variable (ref: 3774)))
(FAMIX.Access (id: 59)
(accessor (ref: 1534))
(astStartPosition 4321)
(astStopPosition 4321)
(variable (ref: 2836)))
(FAMIX.CaughtException (id: 60)
(definingMethod (ref: 4727))
(exceptionClass (ref: 1308)))
(FAMIX.Inheritance (id: 61)
(subclass (ref: 3075))
(superclass (ref: 3368)))
(FAMIX.Access (id: 62)
(accessor (ref: 4222))
(astStartPosition 3118)
(astStopPosition 3127)
(variable (ref: 1700)))
(FAMIX.Attribute (id: 63)
(name 'magenta')
(astStartPosition 10734)
(astStopPosition 10744)
(declaredType (ref: 4942))
(modifiers 'public' 'final')
(parentType (ref: 4839)))
(FAMIX.Inheritance (id: 64)
(subclass (ref: 209))
(superclass (ref: 3494)))
(FAMIX.IndexedFileAnchor (id: 65)
(element (ref: 1925))
(endPos 3349)
(fileName 'src/main/java/swidgets/STextField.java')
(startPos 3264))
(FAMIX.IndexedFileAnchor (id: 66)
(element (ref: 4037))
(endPos 1471)
(fileName 'src/main/java/javagently/List.java')
(startPos 1468))
(FAMIX.Access (id: 67)
(accessor (ref: 2268))
(astStartPosition 5091)
(astStopPosition 5095)
(isWrite true)
(variable (ref: 4047)))
(FAMIX.AnnotationInstanceAttribute (id: 68)
(annotationTypeAttribute (ref: 4489))
(parentAnnotationInstance (ref: 860))
(value '##default'))
(FAMIX.Access (id: 69)
(accessor (ref: 2649))
(astStartPosition 838)
(astStopPosition 840)
(variable (ref: 1501)))
(FAMIX.Inheritance (id: 70)
(subclass (ref: 1197))
(superclass (ref: 3494)))
(FAMIX.Invocation (id: 71)
(astStartPosition 1801)
(astStopPosition 1808)
(candidates (ref: 1402))
(sender (ref: 3659))
(signature 'input.filter(x -> x.contains("take snapshot")).snapshot(counter)'))
(FAMIX.Access (id: 72)
(accessor (ref: 2473))
(astStartPosition 2076)
(astStopPosition 2079)
(variable (ref: 5161)))
(FAMIX.Access (id: 73)
(accessor (ref: 1960))
(astStartPosition 3261)
(astStopPosition 3270)
(variable (ref: 2971)))
(FAMIX.Invocation (id: 74)
(astStartPosition 9071)
(astStopPosition 9075)
(candidates (ref: 1065))
(receiver (ref: 3034))
(sender (ref: 789))
(signature 'datasets.reset()'))
(FAMIX.AnnotationTypeAttribute (id: 75)
(name 'name')
(parentType (ref: 1739)))
(FAMIX.Access (id: 76)
(accessor (ref: 5374))
(astStartPosition 1119)
(astStopPosition 1122)
(variable (ref: 3699)))
(FAMIX.Invocation (id: 77)
(astStartPosition 2911)
(astStopPosition 2915)
(candidates (ref: 1510))
(sender (ref: 4863))
(signature 'new Thread(){
public void run(){
System.out.println("look up " + wrd);
Optional<String> def=Optional.empty();
try {
Socket s=new Socket(InetAddress.getByName("dict.org"),2628);
try {
BufferedReader r=new BufferedReader(new InputStreamReader(s.getInputStream(),"UTF-8"));
PrintWriter w=new PrintWriter(new OutputStreamWriter(s.getOutputStream(),"UTF-8"));
String greeting=r.readLine();
w.println("DEFINE ! " + wrd);
w.flush();
String result=r.readLine();
if (result.startsWith("150")) result=r.readLine();
if (result.startsWith("151")) {
StringBuffer b=new StringBuffer();
while (true) {
String l=r.readLine();
if (l.equals(".")) break;
b.append(l + "\n");
}
def=Optional.of(b.toString());
}
else System.out.println("ERROR: " + result);
}
finally {
try {
s.close();
}
catch ( IOException e) {
}
}
}
catch ( UnknownHostException e) {
System.out.println(e.toString());
}
catch ( IOException e) {
System.out.println(e.toString());
}
finally {
sDefinition.send(def);
}
}
}
.start()'))
(FAMIX.Access (id: 78)
(accessor (ref: 537))
(astStartPosition 4184)
(astStopPosition 4184)
(variable (ref: 3894)))
(FAMIX.LocalVariable (id: 79)
(name 'controller')
(declaredType (ref: 5154))
(isStub true)
(parentBehaviouralEntity (ref: 5047)))
(FAMIX.Class (id: 80)
(name 'HasGetTransferHandler')
(container (ref: 725))
(isInterface true)
(isStub true)
(modifiers 'package'))
(FAMIX.Access (id: 81)
(accessor (ref: 2923))
(astStartPosition 3409)
(astStopPosition 3409)
(isWrite true)
(variable (ref: 623)))
(FAMIX.Access (id: 82)
(accessor (ref: 2088))
(astStartPosition 514)
(astStopPosition 514)
(variable (ref: 2218)))
(FAMIX.IndexedFileAnchor (id: 83)
(element (ref: 961))
(endPos 267)
(fileName 'src/main/java/ch/dreyeck/zettelkasten/person/PersonModel.java')
(startPos 247))
(FAMIX.Inheritance (id: 84)
(subclass (ref: 3952))
(superclass (ref: 4980)))
(FAMIX.Access (id: 85)
(accessor (ref: 2888))
(astStartPosition 905)
(astStopPosition 925)
(variable (ref: 3701)))
(FAMIX.IndexedFileAnchor (id: 86)
(element (ref: 4510))
(endPos 2077)
(fileName 'src/main/java/ch/dreyeck/zettelkasten/xml/ObjectFactory.java')
(startPos 1952))
(FAMIX.Method (id: 87)
(name 'emptyMap')
(declaredType (ref: 5036))
(hasClassScope true)
(isStub true)
(modifiers 'public' 'final')
(parentType (ref: 755))
(signature 'emptyMap()'))
(FAMIX.Class (id: 88)
(name 'Hashtable')
(container (ref: 3550))
(isStub true)
(modifiers 'public'))
(FAMIX.AnnotationInstanceAttribute (id: 89)
(annotationTypeAttribute (ref: 4777))
(parentAnnotationInstance (ref: 3358))
(value 'rating'))
(FAMIX.Method (id: 90)
(name 'getSimpleName')
(declaredType (ref: 2142))
(isStub true)
(modifiers 'public')
(parentType (ref: 359))
(signature 'getSimpleName()'))
(FAMIX.Class (id: 91)
(name 'InputEvent')
(container (ref: 55))
(isStub true)
(modifiers 'public'))
(FAMIX.Access (id: 92)
(accessor (ref: 2088))
(astStartPosition 535)
(astStopPosition 537)
(isWrite true)
(variable (ref: 833)))
(FAMIX.Class (id: 93)
(name 'Scene')
(container (ref: 4075))
(isStub true)
(modifiers 'public'))
(FAMIX.Inheritance (id: 94)
(subclass (ref: 2513))
(superclass (ref: 1999)))
(FAMIX.IndexedFileAnchor (id: 95)
(element (ref: 4476))
(endPos 4085)
(fileName 'src/main/java/swidgets/STextArea.java')
(startPos 4081))
(FAMIX.Invocation (id: 96)
(astStartPosition 2093)
(astStopPosition 2097)
(candidates (ref: 2336))
(sender (ref: 295))
(signature 'new Panel()'))
(FAMIX.Method (id: 97)
(name 'toFront')
(isStub true)
(modifiers 'public')
(parentType (ref: 515))
(signature 'toFront()'))
(FAMIX.Method (id: 98)
(name 'trim')
(declaredType (ref: 2142))
(isStub true)
(modifiers 'public')
(parentType (ref: 2142))
(signature 'trim()'))
(FAMIX.Access (id: 99)
(accessor (ref: 5415))
(astStartPosition 2448)
(astStopPosition 2451))
(FAMIX.Parameter (id: 100)
(name 'columns')
(declaredType (ref: 4942))
(parentBehaviouralEntity (ref: 1630)))
(FAMIX.Access (id: 101)
(accessor (ref: 4711))
(astStartPosition 8197)
(astStopPosition 8213)
(variable (ref: 1962)))
(FAMIX.AnnotationInstance (id: 102)
(annotatedEntity (ref: 4102))
(annotationType (ref: 1739))
(astStartPosition 1323)
(astStopPosition 1375))
(FAMIX.Method (id: 103)
(name 'TextField')
(isStub true)
(kind 'constructor')
(modifiers 'public')
(parentType (ref: 3394))
(signature 'TextField(int)'))
(FAMIX.Inheritance (id: 104)
(subclass (ref: 5199))
(superclass (ref: 1438)))
(FAMIX.AnnotationInstanceAttribute (id: 105)
(annotationTypeAttribute (ref: 3637))
(parentAnnotationInstance (ref: 1680))
(value ''))
(FAMIX.Method (id: 106)
(name 'TimeDisplay')
(astStartPosition 51)
(astStopPosition 61)
(cyclomaticComplexity 2)
(kind 'constructor')
(modifiers 'package')
(parentType (ref: 467))
(signature 'TimeDisplay()'))
(FAMIX.Access (id: 107)
(accessor (ref: 4863))
(astStartPosition 529)
(astStopPosition 534)
(isWrite true)
(variable (ref: 1326)))
(FAMIX.IndexedFileAnchor (id: 108)
(element (ref: 1564))
(endPos 1662)
(fileName 'src/main/java/swidgets/STextField.java')
(startPos 1580))
(FAMIX.Inheritance (id: 109)
(subclass (ref: 359))
(superclass (ref: 3494)))
(FAMIX.Method (id: 110)
(name 'getContent')
(astStartPosition 3967)
(astStopPosition 3976)
(cyclomaticComplexity 1)
(declaredType (ref: 2142))
(modifiers 'public')
(parentType (ref: 2890))
(signature 'getContent()'))
(FAMIX.ParameterizableClass (id: 111)
(name 'LazyCell')
(container (ref: 3130))
(isStub true)
(modifiers 'package'))
(FAMIX.Method (id: 112)
(name 'Stage')
(isStub true)
(kind 'constructor')
(modifiers 'public')
(parentType (ref: 2488))
(signature 'Stage()'))
(FAMIX.Access (id: 113)
(accessor (ref: 3659))
(astStartPosition 2023)
(astStopPosition 2023))
(FAMIX.Inheritance (id: 114)
(subclass (ref: 1919))
(superclass (ref: 4000)))
(FAMIX.Method (id: 115)
(name 'lift')
(declaredType (ref: 5401))
(isStub true)
(modifiers 'public' 'final')
(parentType (ref: 605))
(signature 'lift(nz.sodium.Cell<B>, nz.sodium.Cell<C>, nz.sodium.Lambda3<A,B,C,D>)'))
(FAMIX.Class (id: 116)
(name 'InputStreamReader')
(container (ref: 4303))
(isStub true)
(modifiers 'public'))
(FAMIX.Namespace (id: 117)
(name 'event')
(isStub true)
(parentScope (ref: 30)))
(FAMIX.Method (id: 118)
(name 'Label')
(isStub true)
(kind 'constructor')
(modifiers 'public')
(parentType (ref: 1162))
(signature 'Label(java.lang.String)'))
(FAMIX.Invocation (id: 119)
(astStartPosition 1324)
(astStopPosition 1330)
(candidates (ref: 3421))
(sender (ref: 5138))
(signature 'zipEntry.getName()'))
(FAMIX.PrimitiveType (id: 120)
(name 'int[]')
(container (ref: 5387))
(isStub true)
(modifiers 'package'))
(FAMIX.Inheritance (id: 121)
(subclass (ref: 1647))
(superclass (ref: 3494)))
(FAMIX.Parameter (id: 122)
(name 'text')
(declaredType (ref: 2107))
(parentBehaviouralEntity (ref: 5188)))
(FAMIX.Attribute (id: 123)
(name 'zettelView')
(astStartPosition 1827)
(astStopPosition 1875)
(declaredType (ref: 1429))
(modifiers 'private')
(parentType (ref: 4683)))
(FAMIX.AnnotationTypeAttribute (id: 124)
(name 'required')
(parentType (ref: 3206)))
(FAMIX.Access (id: 125)
(accessor (ref: 3465))
(astStartPosition 10840)
(astStopPosition 10849)
(variable (ref: 9)))
(FAMIX.Parameter (id: 126)
(name 'g')
(declaredType (ref: 4839))
(parentBehaviouralEntity (ref: 279)))
(FAMIX.Access (id: 127)
(accessor (ref: 536))
(astStartPosition 3602)
(astStopPosition 3608)
(variable (ref: 4605)))
(FAMIX.Class (id: 128)
(name '$1')
(astStartPosition 4566)
(astStopPosition 4677)
(container (ref: 1960)))
(FAMIX.Inheritance (id: 129)
(subclass (ref: 1082))
(superclass (ref: 3494)))
(FAMIX.Invocation (id: 130)
(astStartPosition 1876)
(astStopPosition 1886)
(candidates (ref: 1903))
(sender (ref: 2664))
(signature 'setEditable(false)'))
(FAMIX.Inheritance (id: 131)
(subclass (ref: 764))
(superclass (ref: 1400)))
(FAMIX.AnnotationInstance (id: 132)
(annotatedEntity (ref: 863))
(annotationType (ref: 1373))
(astStartPosition 3383)
(astStopPosition 3428))
(FAMIX.AnnotationInstance (id: 133)
(annotatedEntity (ref: 4102))
(annotationType (ref: 1017))
(astStartPosition 1285)
(astStopPosition 1321))
(FAMIX.Attribute (id: 134)
(name '_Content_QNAME')
(astStartPosition 1637)
(astStopPosition 1677)
(declaredType (ref: 2460))
(hasClassScope true)
(modifiers 'private' 'final')
(parentType (ref: 2926)))
(FAMIX.Attribute (id: 135)
(name 'plotType')
(astStartPosition 2505)
(astStopPosition 2512)
(declaredType (ref: 4942))
(modifiers 'package')
(parentType (ref: 22)))
(FAMIX.IndexedFileAnchor (id: 136)
(element (ref: 2096))
(endPos 1995)
(fileName 'src/main/java/swidgets/SDateField.java')
(startPos 1992))
(FAMIX.Access (id: 137)
(accessor (ref: 506))
(astStartPosition 1218)
(astStopPosition 1235)
(variable (ref: 3205)))
(FAMIX.IndexedFileAnchor (id: 138)
(element (ref: 1524))
(endPos 2899)
(fileName 'src/main/java/ch/dreyeck/zettelkasten/xml/Zettel.java')
(startPos 2894))
(FAMIX.LocalVariable (id: 139)
(name 'unmarshaller')
(declaredType (ref: 3715))
(isStub true)
(parentBehaviouralEntity (ref: 5136)))
(FAMIX.Access (id: 140)
(accessor (ref: 279))
(astStartPosition 3364)
(astStopPosition 3370)
(variable (ref: 4095)))
(FAMIX.Invocation (id: 141)
(astStartPosition 461)
(astStopPosition 481)
(candidates (ref: 800))
(sender (ref: 2950))
(signature 'new ByteArrayOutputStream()'))
(FAMIX.IndexedFileAnchor (id: 142)
(element (ref: 3845))
(endPos 958)
(fileName 'src/main/java/swidgets/SButton.java')
(startPos 951))
(FAMIX.IndexedFileAnchor (id: 143)
(element (ref: 2342))
(endPos 1010)
(fileName 'src/main/java/javagently/List.java')
(startPos 949))
(FAMIX.Method (id: 144)
(name 'forEach')
(isStub true)
(modifiers 'public')
(parentType (ref: 5285))
(signature 'forEach(java.util.function.Consumer<? super T>)'))
(FAMIX.Inheritance (id: 145)
(subclass (ref: 981))
(superclass (ref: 4959)))
(FAMIX.ParameterizedType (id: 146)
(name 'Collection<Integer>')
(arguments (ref: 4860))
(container (ref: 3550))
(isStub true)
(modifiers 'public')
(parameterizableClass (ref: 1213)))
(FAMIX.Access (id: 147)
(accessor (ref: 1273))
(astStartPosition 7645)
(astStopPosition 7648)
(variable (ref: 2753)))
(FAMIX.Access (id: 148)
(accessor (ref: 1865))
(astStartPosition 1571)
(astStopPosition 1584)
(variable (ref: 5313)))
(FAMIX.Invocation (id: 149)
(astStartPosition 1691)
(astStopPosition 1694)
(candidates (ref: 1777))
(sender (ref: 4387))
(signature 'sZettel.send(zknFileXML)'))
(FAMIX.IndexedFileAnchor (id: 150)
(element (ref: 1660))
(endPos 8437)
(fileName 'src/main/java/javagently/Graph.java')
(startPos 8432))
(FAMIX.Invocation (id: 151)
(astStartPosition 2039)
(astStopPosition 2046)
(candidates (ref: 5422))
(sender (ref: 524))
(signature 'Integer.parseInt(T.nextToken())'))
(FAMIX.Class (id: 152)
(name 'ScrollPaneConstants')
(container (ref: 30))
(isInterface true)
(isStub true)
(modifiers 'public'))
(FAMIX.Access (id: 153)
(accessor (ref: 789))
(astStartPosition 9323)
(astStopPosition 9330)
(variable (ref: 135)))
(FAMIX.Invocation (id: 154)
(astStartPosition 2073)
(astStopPosition 2084)
(candidates (ref: 2963))
(sender (ref: 1748))
(signature 'stream.getNextEntry()'))
(FAMIX.Comment (id: 155)
(container (ref: 38))
(content '//
'))
(FAMIX.Access (id: 156)
(accessor (ref: 3447))
(astStartPosition 5052)
(astStopPosition 5059)
(variable (ref: 3034)))
(FAMIX.Invocation (id: 157)
(astStartPosition 1594)
(astStopPosition 1603)
(candidates (ref: 4482))
(sender (ref: 780))
(signature 'new FileReader(filename)'))
(FAMIX.Method (id: 158)
(name 'scaleX')
(astStartPosition 7809)
(astStopPosition 7814)
(cyclomaticComplexity 1)
(declaredType (ref: 4942))
(modifiers 'private')
(parentType (ref: 4839))
(signature 'scaleX(double)'))
(FAMIX.Invocation (id: 159)
(astStartPosition 4222)
(astStopPosition 4224)
(candidates (ref: 2689))
(sender (ref: 1960))
(signature 'view.add(word,c)'))
(FAMIX.IndexedFileAnchor (id: 160)
(element (ref: 2825))
(endPos 2205)
(fileName 'src/main/java/ch/dreyeck/zettelkasten/xml/ObjectFactory.java')
(startPos 2084))
(FAMIX.AnnotationInstanceAttribute (id: 161)
(annotationTypeAttribute (ref: 3970))
(parentAnnotationInstance (ref: 3611))
(value 'GLOBAL.class'))
(FAMIX.Inheritance (id: 162)
(subclass (ref: 704))
(superclass (ref: 4959)))
(FAMIX.Attribute (id: 163)
(name 'N')
(astStartPosition 3514)
(astStopPosition 3536)
(declaredType (ref: 1679))
(hasClassScope true)
(modifiers 'private')
(parentType (ref: 2885)))
(FAMIX.Inheritance (id: 164)
(subclass (ref: 903))
(superclass (ref: 1807)))
(FAMIX.Access (id: 165)
(accessor (ref: 2106))
(astStartPosition 2466)
(astStopPosition 2478)
(variable (ref: 4530)))
(FAMIX.Inheritance (id: 166)
(subclass (ref: 906))
(superclass (ref: 4979)))
(FAMIX.Method (id: 167)
(name 'setRating')
(astStartPosition 7547)
(astStopPosition 7555)
(cyclomaticComplexity 1)
(modifiers 'public')
(parentType (ref: 2890))
(signature 'setRating(java.lang.String)'))
(FAMIX.Access (id: 168)
(accessor (ref: 1273))
(astStartPosition 7413)
(astStopPosition 7423)
(isWrite true)
(variable (ref: 4781)))
(FAMIX.Access (id: 169)
(accessor (ref: 295))
(astStartPosition 2366)
(astStopPosition 2372)
(variable (ref: 4095)))
(FAMIX.Method (id: 170)
(name 'getLink')
(astStartPosition 1934)
(astStopPosition 1940)
(cyclomaticComplexity 2)
(declaredType (ref: 3476))
(modifiers 'public')
(parentType (ref: 2782))
(signature 'getLink()'))
(FAMIX.Access (id: 171)
(accessor (ref: 1960))
(astStartPosition 4060)
(astStopPosition 4062))
(FAMIX.Method (id: 172)
(name 'setText')
(isStub true)
(modifiers 'public')
(parentType (ref: 3394))
(signature 'setText(java.lang.String)'))
(FAMIX.Access (id: 173)
(accessor (ref: 414))
(astStartPosition 4142)
(astStopPosition 4142)
(variable (ref: 4844)))
(FAMIX.ThrownException (id: 174)
(definingMethod (ref: 4721))
(exceptionClass (ref: 2508)))
(FAMIX.Access (id: 175)
(accessor (ref: 3465))
(astStartPosition 11125)
(astStopPosition 11129)
(variable (ref: 3684)))
(FAMIX.AnnotationInstance (id: 176)
(annotatedEntity (ref: 3766))
(annotationType (ref: 3638))
(astStartPosition 1517)
(astStopPosition 1569))
(FAMIX.Access (id: 177)
(accessor (ref: 5138))
(astStartPosition 1219)
(astStopPosition 1246)
(variable (ref: 1270)))
(FAMIX.Parameter (id: 178)
(name 'reader')
(declaredType (ref: 1803))
(parentBehaviouralEntity (ref: 812)))
(FAMIX.ParameterizableClass (id: 179)
(name 'Collector')
(container (ref: 5328))
(isInterface true)
(isStub true)
(modifiers 'public'))
(FAMIX.Access (id: 180)
(accessor (ref: 1801))
(astStartPosition 494)
(astStopPosition 498)
(variable (ref: 5483)))
(FAMIX.Invocation (id: 181)
(astStartPosition 1154)
(astStopPosition 1160)
(candidates (ref: 1675))
(sender (ref: 2888))
(signature 'clss.getPackage().getName()'))
(FAMIX.Invocation (id: 182)