-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypescript
More file actions
3271 lines (3270 loc) · 130 KB
/
typescript
File metadata and controls
3271 lines (3270 loc) · 130 KB
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
Script started on Thu Feb 7 12:46:45 2013
]0;owlguest@lm-rdk-s2e-2:~/src/lsedit-7.4.2[owlguest@lm-rdk-s2e-2 lsedit-7.4.2]$ exit./c.sh
----------
1. WARNING in lsedit/AAClusterLayout.java (at line 704)
protected class CellRenderer extends JTextField implements TableCellRenderer {
^^^^^^^^^^^^
The serializable class CellRenderer does not declare a static final serialVersionUID field of type long
----------
2. WARNING in lsedit/AAClusterLayout.java (at line 729)
class CellEditor extends DefaultCellEditor {
^^^^^^^^^^
The serializable class CellEditor does not declare a static final serialVersionUID field of type long
----------
3. WARNING in lsedit/AAClusterLayout.java (at line 761)
protected class MyTableModel extends AbstractTableModel {
^^^^^^^^^^^^
The serializable class MyTableModel does not declare a static final serialVersionUID field of type long
----------
4. WARNING in lsedit/AAClusterLayout.java (at line 811)
protected class MyJTable extends JTable {
^^^^^^^^
The serializable class MyJTable does not declare a static final serialVersionUID field of type long
----------
5. WARNING in lsedit/AAClusterLayout.java (at line 829)
class AAClusterConfigure extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^
The serializable class AAClusterConfigure does not declare a static final serialVersionUID field of type long
----------
----------
6. WARNING in lsedit/ACDCClusterLayout.java (at line 343)
class ACDCClusterConfigure extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^^^
The serializable class ACDCClusterConfigure does not declare a static final serialVersionUID field of type long
----------
----------
7. WARNING in lsedit/Arrow.java (at line 8)
public class Arrow extends JComponent {
^^^^^
The serializable class Arrow does not declare a static final serialVersionUID field of type long
----------
----------
8. WARNING in lsedit/AttributeBox.java (at line 21)
class ShowLabel extends JLabel
^^^^^^^^^
The serializable class ShowLabel does not declare a static final serialVersionUID field of type long
----------
9. WARNING in lsedit/AttributeBox.java (at line 33)
class ShowAttributeColor extends ShowLabel {
^^^^^^^^^^^^^^^^^^
The serializable class ShowAttributeColor does not declare a static final serialVersionUID field of type long
----------
10. WARNING in lsedit/AttributeBox.java (at line 49)
class ShowImage extends ShowLabel {
^^^^^^^^^
The serializable class ShowImage does not declare a static final serialVersionUID field of type long
----------
11. WARNING in lsedit/AttributeBox.java (at line 72)
class AttributeBoxPanel extends JPanel
^^^^^^^^^^^^^^^^^
The serializable class AttributeBoxPanel does not declare a static final serialVersionUID field of type long
----------
12. WARNING in lsedit/AttributeBox.java (at line 154)
public final class AttributeBox extends JSplitPane implements ChangeListener
^^^^^^^^^^^^
The serializable class AttributeBox does not declare a static final serialVersionUID field of type long
----------
----------
13. WARNING in lsedit/BrowserLauncher.java (at line 136)
private static Object linkage;
^^^^^^^
The field BrowserLauncher.linkage is never read locally
----------
14. WARNING in lsedit/BrowserLauncher.java (at line 139)
private static final String JDirect_MacOSX = "/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/HIToolbox";
^^^^^^^^^^^^^^
The field BrowserLauncher.JDirect_MacOSX is never read locally
----------
----------
15. WARNING in lsedit/BunchClusterLayout.java (at line 57)
class ListVector extends Vector {
^^^^^^^^^^
The serializable class ListVector does not declare a static final serialVersionUID field of type long
----------
16. WARNING in lsedit/BunchClusterLayout.java (at line 195)
class MyListCellRenderer extends JLabel implements ListCellRenderer {
^^^^^^^^^^^^^^^^^^
The serializable class MyListCellRenderer does not declare a static final serialVersionUID field of type long
----------
17. WARNING in lsedit/BunchClusterLayout.java (at line 660)
class BunchClusterConfigure extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^^^^
The serializable class BunchClusterConfigure does not declare a static final serialVersionUID field of type long
----------
18. WARNING in lsedit/BunchClusterLayout.java (at line 680)
class BasicTab extends JPanel implements ActionListener, DocumentListener {
^^^^^^^^
The serializable class BasicTab does not declare a static final serialVersionUID field of type long
----------
19. WARNING in lsedit/BunchClusterLayout.java (at line 682)
class HillClimbingConfiguration extends JDialog implements ActionListener, ChangeListener {
^^^^^^^^^^^^^^^^^^^^^^^^^
The serializable class HillClimbingConfiguration does not declare a static final serialVersionUID field of type long
----------
20. WARNING in lsedit/BunchClusterLayout.java (at line 853)
int i, val;
^^^
The local variable val is never read
----------
21. WARNING in lsedit/BunchClusterLayout.java (at line 854)
double dval;
^^^^
The local variable dval is never read
----------
22. WARNING in lsedit/BunchClusterLayout.java (at line 941)
class GeneticConfiguration extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^^^
The serializable class GeneticConfiguration does not declare a static final serialVersionUID field of type long
----------
23. WARNING in lsedit/BunchClusterLayout.java (at line 1025)
int i, val;
^^^
The local variable val is never read
----------
24. WARNING in lsedit/BunchClusterLayout.java (at line 1293)
class WeightsTab extends JPanel {
^^^^^^^^^^
The serializable class WeightsTab does not declare a static final serialVersionUID field of type long
----------
25. WARNING in lsedit/BunchClusterLayout.java (at line 1300)
class WeightedReln extends JPanel implements DocumentListener
^^^^^^^^^^^^
The serializable class WeightedReln does not declare a static final serialVersionUID field of type long
----------
26. WARNING in lsedit/BunchClusterLayout.java (at line 1379)
int val;
^^^
The local variable val is never read
----------
27. WARNING in lsedit/BunchClusterLayout.java (at line 1473)
class OptionsTab extends Box implements ActionListener {
^^^^^^^^^^
The serializable class OptionsTab does not declare a static final serialVersionUID field of type long
----------
28. WARNING in lsedit/BunchClusterLayout.java (at line 1842)
class LibrariesTab extends OmnipresentTab implements ActionListener {
^^^^^^^^^^^^
The serializable class LibrariesTab does not declare a static final serialVersionUID field of type long
----------
29. WARNING in lsedit/BunchClusterLayout.java (at line 1985)
class ClientsTab extends OmnipresentTab implements ActionListener {
^^^^^^^^^^
The serializable class ClientsTab does not declare a static final serialVersionUID field of type long
----------
30. WARNING in lsedit/BunchClusterLayout.java (at line 2186)
class SuppliersTab extends OmnipresentTab implements ActionListener {
^^^^^^^^^^^^
The serializable class SuppliersTab does not declare a static final serialVersionUID field of type long
----------
31. WARNING in lsedit/BunchClusterLayout.java (at line 2386)
class BothTab extends OmnipresentTab implements ActionListener {
^^^^^^^
The serializable class BothTab does not declare a static final serialVersionUID field of type long
----------
32. WARNING in lsedit/BunchClusterLayout.java (at line 2577)
class UserTab extends Box implements ActionListener {
^^^^^^^
The serializable class UserTab does not declare a static final serialVersionUID field of type long
----------
----------
33. WARNING in lsedit/Cardinal.java (at line 10)
class Cardinal extends JComponent {
^^^^^^^^
The serializable class Cardinal does not declare a static final serialVersionUID field of type long
----------
----------
34. WARNING in lsedit/ClassInherits.java (at line 22)
public class ClassInherits extends JDialog implements ActionListener {
^^^^^^^^^^^^^
The serializable class ClassInherits does not declare a static final serialVersionUID field of type long
----------
----------
35. WARNING in lsedit/ClassUsage.java (at line 35)
class UsageLabel extends JLabel implements TableCellRenderer {
^^^^^^^^^^
The serializable class UsageLabel does not declare a static final serialVersionUID field of type long
----------
36. WARNING in lsedit/ClassUsage.java (at line 49)
class UsageTableModel extends AbstractTableModel {
^^^^^^^^^^^^^^^
The serializable class UsageTableModel does not declare a static final serialVersionUID field of type long
----------
37. WARNING in lsedit/ClassUsage.java (at line 97)
class UsageColumnModel extends DefaultTableColumnModel {
^^^^^^^^^^^^^^^^
The serializable class UsageColumnModel does not declare a static final serialVersionUID field of type long
----------
38. WARNING in lsedit/ClassUsage.java (at line 154)
class UsageTable extends JTable implements TableModelListener {
^^^^^^^^^^
The serializable class UsageTable does not declare a static final serialVersionUID field of type long
----------
39. WARNING in lsedit/ClassUsage.java (at line 174)
public class ClassUsage extends JDialog implements ActionListener, ItemListener {
^^^^^^^^^^
The serializable class ClassUsage does not declare a static final serialVersionUID field of type long
----------
----------
40. WARNING in lsedit/ClientSet.java (at line 9)
public class ClientSet extends ClientSupplierSet
^^^^^^^^^
The serializable class ClientSet does not declare a static final serialVersionUID field of type long
----------
----------
41. WARNING in lsedit/ClipboardBox.java (at line 24)
public class ClipboardBox extends TabBox /* extends JComponent */ implements ChangeListener, ToolBarEventHandler, ClipboardListener, MouseListener
^^^^^^^^^^^^
The serializable class ClipboardBox does not declare a static final serialVersionUID field of type long
----------
42. WARNING in lsedit/ClipboardBox.java (at line 26)
protected class ExpandedChkBox extends JCheckBox implements ItemListener
^^^^^^^^^^^^^^
The serializable class ExpandedChkBox does not declare a static final serialVersionUID field of type long
----------
----------
43. WARNING in lsedit/Clipboard.java (at line 11)
public class Clipboard extends Vector
^^^^^^^^^
The serializable class Clipboard does not declare a static final serialVersionUID field of type long
----------
----------
44. WARNING in lsedit/ClosureConstraints.java (at line 22)
public class ClosureConstraints extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^
The serializable class ClosureConstraints does not declare a static final serialVersionUID field of type long
----------
----------
45. WARNING in lsedit/ClusterInterface.java (at line 20)
import java.io.BufferedInputStream;
^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import java.io.BufferedInputStream is never used
----------
46. WARNING in lsedit/ClusterInterface.java (at line 267)
class ClusterInterfaceDialog extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^^^^^^^
The serializable class ClusterInterfaceDialog does not declare a static final serialVersionUID field of type long
----------
----------
47. WARNING in lsedit/ClusterLayout.java (at line 368)
class ClusterConfigure extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^
The serializable class ClusterConfigure does not declare a static final serialVersionUID field of type long
----------
----------
48. WARNING in lsedit/ClusterMetrics.java (at line 142)
public class ClusterMetrics extends JDialog implements ActionListener {
^^^^^^^^^^^^^^
The serializable class ClusterMetrics does not declare a static final serialVersionUID field of type long
----------
----------
49. WARNING in lsedit/ColorChooser.java (at line 23)
public class ColorChooser extends JDialog implements ActionListener {
^^^^^^^^^^^^
The serializable class ColorChooser does not declare a static final serialVersionUID field of type long
----------
----------
50. WARNING in lsedit/Diagram.java (at line 41)
class Zoom extends MyUndoableEdit implements UndoableEdit
^^^^
The serializable class Zoom does not declare a static final serialVersionUID field of type long
----------
51. WARNING in lsedit/Diagram.java (at line 77)
class RelayoutSubtree extends MyUndoableEdit implements UndoableEdit
^^^^^^^^^^^^^^^
The serializable class RelayoutSubtree does not declare a static final serialVersionUID field of type long
----------
52. WARNING in lsedit/Diagram.java (at line 179)
class ExitFlag extends JComponent implements MouseListener
^^^^^^^^
The serializable class ExitFlag does not declare a static final serialVersionUID field of type long
----------
53. WARNING in lsedit/Diagram.java (at line 266)
public final class Diagram extends TemporalTa /* extends UndoableTa extends Ta extends JPanel */ implements TaListener, MouseMotionListener
^^^^^^^
The serializable class Diagram does not declare a static final serialVersionUID field of type long
----------
54. WARNING in lsedit/Diagram.java (at line 2196)
public class RelayoutDialog extends JDialog implements ActionListener {
^^^^^^^^^^^^^^
The serializable class RelayoutDialog does not declare a static final serialVersionUID field of type long
----------
55. WARNING in lsedit/Diagram.java (at line 2209)
class LayoutTab extends JPanel implements ActionListener
^^^^^^^^^
The serializable class LayoutTab does not declare a static final serialVersionUID field of type long
----------
56. WARNING in lsedit/Diagram.java (at line 2259)
class ClusterTab extends JPanel implements ActionListener
^^^^^^^^^^
The serializable class ClusterTab does not declare a static final serialVersionUID field of type long
----------
57. WARNING in lsedit/Diagram.java (at line 2311)
class RelayoutAllTab extends JPanel implements ActionListener
^^^^^^^^^^^^^^
The serializable class RelayoutAllTab does not declare a static final serialVersionUID field of type long
----------
----------
58. WARNING in lsedit/Do.java (at line 9)
import javax.swing.JMenuBar;
^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JMenuBar is never used
----------
59. WARNING in lsedit/Do.java (at line 10)
import javax.swing.JMenuItem;
^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JMenuItem is never used
----------
60. WARNING in lsedit/Do.java (at line 25)
class MyCheckBoxMenuItem extends JCheckBoxMenuItem implements ActionListener
^^^^^^^^^^^^^^^^^^
The serializable class MyCheckBoxMenuItem does not declare a static final serialVersionUID field of type long
----------
61. WARNING in lsedit/Do.java (at line 359)
private static void setMyCheckBoxMenuItemState(AbstractButton m, boolean value)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The method setMyCheckBoxMenuItemState(AbstractButton, boolean) from the type Do is never used locally
----------
----------
62. WARNING in lsedit/EditableTa.java (at line 15)
public class EditableTa extends Ta
^^^^^^^^^^
The serializable class EditableTa does not declare a static final serialVersionUID field of type long
----------
63. WARNING in lsedit/EditableTa.java (at line 26)
private Diagram m_diagram;
^^^^^^^^^
The field EditableTa.m_diagram is never read locally
----------
----------
64. WARNING in lsedit/EditAttribute.java (at line 24)
import javax.swing.JPanel;
^^^^^^^^^^^^^^^^^^
The import javax.swing.JPanel is never used
----------
65. WARNING in lsedit/EditAttribute.java (at line 35)
public class EditAttribute extends JDialog implements ActionListener { //Class definition
^^^^^^^^^^^^^
The serializable class EditAttribute does not declare a static final serialVersionUID field of type long
----------
66. WARNING in lsedit/EditAttribute.java (at line 39)
protected class AttributeTableModel extends AbstractTableModel {
^^^^^^^^^^^^^^^^^^^
The serializable class AttributeTableModel does not declare a static final serialVersionUID field of type long
----------
67. WARNING in lsedit/EditAttribute.java (at line 108)
protected class MyJTable extends JTable {
^^^^^^^^
The serializable class MyJTable does not declare a static final serialVersionUID field of type long
----------
68. WARNING in lsedit/EditAttribute.java (at line 110)
protected class ColorRenderer extends JLabel implements TableCellRenderer {
^^^^^^^^^^^^^
The serializable class ColorRenderer does not declare a static final serialVersionUID field of type long
----------
69. WARNING in lsedit/EditAttribute.java (at line 152)
class ColorEditor extends DefaultCellEditor
^^^^^^^^^^^
The serializable class ColorEditor does not declare a static final serialVersionUID field of type long
----------
70. WARNING in lsedit/EditAttribute.java (at line 218)
protected class TextRenderer extends JTextField implements TableCellRenderer {
^^^^^^^^^^^^
The serializable class TextRenderer does not declare a static final serialVersionUID field of type long
----------
71. WARNING in lsedit/EditAttribute.java (at line 234)
class TextEditor extends DefaultCellEditor {
^^^^^^^^^^
The serializable class TextEditor does not declare a static final serialVersionUID field of type long
----------
72. WARNING in lsedit/EditAttribute.java (at line 321)
class DoubleEditor extends DefaultCellEditor {
^^^^^^^^^^^^
The serializable class DoubleEditor does not declare a static final serialVersionUID field of type long
----------
73. WARNING in lsedit/EditAttribute.java (at line 374)
class IntegerEditor extends DefaultCellEditor {
^^^^^^^^^^^^^
The serializable class IntegerEditor does not declare a static final serialVersionUID field of type long
----------
74. WARNING in lsedit/EditAttribute.java (at line 429)
protected class StyleRenderer extends JTextField implements TableCellRenderer {
^^^^^^^^^^^^^
The serializable class StyleRenderer does not declare a static final serialVersionUID field of type long
----------
75. WARNING in lsedit/EditAttribute.java (at line 453)
class StyleEditor extends DefaultCellEditor {
^^^^^^^^^^^
The serializable class StyleEditor does not declare a static final serialVersionUID field of type long
----------
76. WARNING in lsedit/EditAttribute.java (at line 516)
protected class ImageRenderer extends JComponent implements TableCellRenderer {
^^^^^^^^^^^^^
The serializable class ImageRenderer does not declare a static final serialVersionUID field of type long
----------
77. WARNING in lsedit/EditAttribute.java (at line 551)
class ImageEditor extends DefaultCellEditor
^^^^^^^^^^^
The serializable class ImageEditor does not declare a static final serialVersionUID field of type long
----------
78. WARNING in lsedit/EditAttribute.java (at line 599)
protected class RelStyleRenderer extends JTextField implements TableCellRenderer {
^^^^^^^^^^^^^^^^
The serializable class RelStyleRenderer does not declare a static final serialVersionUID field of type long
----------
79. WARNING in lsedit/EditAttribute.java (at line 623)
class RelStyleEditor extends DefaultCellEditor {
^^^^^^^^^^^^^^
The serializable class RelStyleEditor does not declare a static final serialVersionUID field of type long
----------
80. WARNING in lsedit/EditAttribute.java (at line 684)
class ParentEntityClassEditor extends DefaultCellEditor {
^^^^^^^^^^^^^^^^^^^^^^^
The serializable class ParentEntityClassEditor does not declare a static final serialVersionUID field of type long
----------
81. WARNING in lsedit/EditAttribute.java (at line 753)
class ParentRelationClassEditor extends DefaultCellEditor {
^^^^^^^^^^^^^^^^^^^^^^^^^
The serializable class ParentRelationClassEditor does not declare a static final serialVersionUID field of type long
----------
82. WARNING in lsedit/EditAttribute.java (at line 980)
private MyJTable m_table;
^^^^^^^
The field EditAttribute.m_table is never read locally
----------
----------
83. WARNING in lsedit/EditConstraints.java (at line 23)
public class EditConstraints extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^
The serializable class EditConstraints does not declare a static final serialVersionUID field of type long
----------
----------
84. WARNING in lsedit/EditElisions.java (at line 12)
import java.awt.Rectangle;
^^^^^^^^^^^^^^^^^^
The import java.awt.Rectangle is never used
----------
85. WARNING in lsedit/EditElisions.java (at line 32)
class ElisionTableModel extends AbstractTableModel {
^^^^^^^^^^^^^^^^^
The serializable class ElisionTableModel does not declare a static final serialVersionUID field of type long
----------
86. WARNING in lsedit/EditElisions.java (at line 43)
LandscapeEditorCore ls = diagram.getLs();
^^
The local variable ls is never read
----------
87. WARNING in lsedit/EditElisions.java (at line 251)
class ElisionEditor extends DefaultCellEditor implements ActionListener
^^^^^^^^^^^^^
The serializable class ElisionEditor does not declare a static final serialVersionUID field of type long
----------
88. WARNING in lsedit/EditElisions.java (at line 317)
class ElisionTable extends JTable {
^^^^^^^^^^^^
The serializable class ElisionTable does not declare a static final serialVersionUID field of type long
----------
89. WARNING in lsedit/EditElisions.java (at line 347)
public class EditElisions extends JDialog implements ActionListener {
^^^^^^^^^^^^
The serializable class EditElisions does not declare a static final serialVersionUID field of type long
----------
90. WARNING in lsedit/EditElisions.java (at line 351)
private ElisionTable m_table;
^^^^^^^
The field EditElisions.m_table is never read locally
----------
----------
91. WARNING in lsedit/EditModeHandler.java (at line 36)
JMenu m1;
^^
The local variable m1 is never read
----------
92. WARNING in lsedit/EditModeHandler.java (at line 46)
JMenu m1;
^^
The local variable m1 is never read
----------
----------
93. WARNING in lsedit/Elision_c_Button.java (at line 11)
public class Elision_c_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^
The serializable class Elision_c_Button does not declare a static final serialVersionUID field of type long
----------
----------
94. WARNING in lsedit/ElisionChooser.java (at line 20)
class ElisionChooser extends JDialog implements ItemListener, ActionListener
^^^^^^^^^^^^^^
The serializable class ElisionChooser does not declare a static final serialVersionUID field of type long
----------
----------
95. WARNING in lsedit/Elision_CS_Button.java (at line 11)
public class Elision_CS_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^^
The serializable class Elision_CS_Button does not declare a static final serialVersionUID field of type long
----------
----------
96. WARNING in lsedit/Elision_CU_Button.java (at line 11)
public class Elision_CU_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^^
The serializable class Elision_CU_Button does not declare a static final serialVersionUID field of type long
----------
----------
97. WARNING in lsedit/Elision_I_Button.java (at line 11)
public class Elision_I_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^
The serializable class Elision_I_Button does not declare a static final serialVersionUID field of type long
----------
----------
98. WARNING in lsedit/Elision_s_Button.java (at line 10)
public class Elision_s_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^
The serializable class Elision_s_Button does not declare a static final serialVersionUID field of type long
----------
----------
99. WARNING in lsedit/Elision_u_Button.java (at line 10)
public class Elision_u_Button extends ToolBarButton implements Icon
^^^^^^^^^^^^^^^^
The serializable class Elision_u_Button does not declare a static final serialVersionUID field of type long
----------
----------
100. WARNING in lsedit/EntityCache.java (at line 106)
EntityInstance e1;
^^
The local variable e1 is never read
----------
----------
101. WARNING in lsedit/EntityClass.java (at line 3)
import java.awt.Color;
^^^^^^^^^^^^^^
The import java.awt.Color is never used
----------
102. WARNING in lsedit/EntityClass.java (at line 7)
import java.io.File;
^^^^^^^^^^^^
The import java.io.File is never used
----------
103. WARNING in lsedit/EntityClass.java (at line 489)
Enumeration en;
^^
The local variable en is never read
----------
104. WARNING in lsedit/EntityClass.java (at line 494)
int i, j, size;
^^^^
The local variable size is never read
----------
----------
105. WARNING in lsedit/EntityComponent.java (at line 25)
public class EntityComponent extends JComponent implements PaintShapeHelper, Icon {
^^^^^^^^^^^^^^^
The serializable class EntityComponent does not declare a static final serialVersionUID field of type long
----------
106. WARNING in lsedit/EntityComponent.java (at line 153)
int x = 0;
^
The local variable x is never read
----------
107. WARNING in lsedit/EntityComponent.java (at line 154)
int y = 0;
^
The local variable y is never read
----------
108. WARNING in lsedit/EntityComponent.java (at line 158)
int offset = 0;
^^^^^^
The local variable offset is never read
----------
109. WARNING in lsedit/EntityComponent.java (at line 161)
boolean center;
^^^^^^
The local variable center is never read
----------
110. WARNING in lsedit/EntityComponent.java (at line 221)
LandscapeEditorCore ls = diagram.getLs();
^^
The local variable ls is never read
----------
111. WARNING in lsedit/EntityComponent.java (at line 256)
int x1, y1;
^^
The local variable x1 is never read
----------
112. WARNING in lsedit/EntityComponent.java (at line 256)
int x1, y1;
^^
The local variable y1 is never read
----------
113. WARNING in lsedit/EntityComponent.java (at line 438)
private static int[] getXp()
^^^^^^^
The method getXp() from the type EntityComponent is never used locally
----------
114. WARNING in lsedit/EntityComponent.java (at line 446)
private static int[] getYp()
^^^^^^^
The method getYp() from the type EntityComponent is never used locally
----------
115. WARNING in lsedit/EntityComponent.java (at line 799)
EntityInstance e;
^
The local variable e is never read
----------
116. WARNING in lsedit/EntityComponent.java (at line 975)
int i, j, k;
^
The local variable k is never read
----------
117. WARNING in lsedit/EntityComponent.java (at line 1918)
EntityClass ec = e.getEntityClass();
^^
The local variable ec is never read
----------
----------
118. WARNING in lsedit/EntityInstance.java (at line 5)
import java.util.Hashtable;
^^^^^^^^^^^^^^^^^^^
The import java.util.Hashtable is never used
----------
119. WARNING in lsedit/EntityInstance.java (at line 14)
import java.awt.FontMetrics;
^^^^^^^^^^^^^^^^^^^^
The import java.awt.FontMetrics is never used
----------
120. WARNING in lsedit/EntityInstance.java (at line 25)
import javax.swing.JFrame;
^^^^^^^^^^^^^^^^^^
The import javax.swing.JFrame is never used
----------
121. WARNING in lsedit/EntityInstance.java (at line 26)
import javax.swing.JOptionPane;
^^^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JOptionPane is never used
----------
122. WARNING in lsedit/EntityInstance.java (at line 247)
private final static double TAB_HEIGHT = 16.0;
^^^^^^^^^^
The field EntityInstance.TAB_HEIGHT is never read locally
----------
123. WARNING in lsedit/EntityInstance.java (at line 249)
private final static int MOUSE_NEAR_EDGE_THRESHOLD = 4;
^^^^^^^^^^^^^^^^^^^^^^^^^
The field EntityInstance.MOUSE_NEAR_EDGE_THRESHOLD is never read locally
----------
124. WARNING in lsedit/EntityInstance.java (at line 255)
private final static int MIN_HEIGHT = 10;
^^^^^^^^^^
The field EntityInstance.MIN_HEIGHT is never read locally
----------
125. WARNING in lsedit/EntityInstance.java (at line 256)
private final static int MIN_WIDTH = 30;
^^^^^^^^^
The field EntityInstance.MIN_WIDTH is never read locally
----------
126. WARNING in lsedit/EntityInstance.java (at line 923)
RelationClass rc;
^^
The local variable rc is never read
----------
127. WARNING in lsedit/EntityInstance.java (at line 924)
int cindex;
^^^^^^
The local variable cindex is never read
----------
128. WARNING in lsedit/EntityInstance.java (at line 2198)
RelationInstance ri;
^^
The local variable ri is never read
----------
129. WARNING in lsedit/EntityInstance.java (at line 2199)
JComponent relationComponent;
^^^^^^^^^^^^^^^^^
The local variable relationComponent is never read
----------
130. WARNING in lsedit/EntityInstance.java (at line 2474)
Enumeration en;
^^
The local variable en is never read
----------
131. WARNING in lsedit/EntityInstance.java (at line 2626)
BitSet elisions = needElisions();
^^^^^^^^
The local variable elisions is never read
----------
132. WARNING in lsedit/EntityInstance.java (at line 2649)
BitSet elisions = m_elisions;
^^^^^^^^
The local variable elisions is never read
----------
133. WARNING in lsedit/EntityInstance.java (at line 2856)
EntityComponent childComponent;
^^^^^^^^^^^^^^
The local variable childComponent is never read
----------
134. WARNING in lsedit/EntityInstance.java (at line 2932)
int new_width, new_height;
^^^^^^^^^
The local variable new_width is never read
----------
135. WARNING in lsedit/EntityInstance.java (at line 2932)
int new_width, new_height;
^^^^^^^^^^
The local variable new_height is never read
----------
136. WARNING in lsedit/EntityInstance.java (at line 3388)
EntityInstance e;
^
The local variable e is never read
----------
137. WARNING in lsedit/EntityInstance.java (at line 3895)
int numRelClasses;
^^^^^^^^^^^^^
The local variable numRelClasses is never read
----------
138. WARNING in lsedit/EntityInstance.java (at line 4680)
int phase, i, j, size;
^
The local variable j is never read
----------
139. WARNING in lsedit/EntityInstance.java (at line 4681)
Attribute attribute, attribute1;
^^^^^^^^^
The local variable attribute is never read
----------
140. WARNING in lsedit/EntityInstance.java (at line 4681)
Attribute attribute, attribute1;
^^^^^^^^^^
The local variable attribute1 is never read
----------
141. WARNING in lsedit/EntityInstance.java (at line 4682)
boolean seen;
^^^^
The local variable seen is never read
----------
142. WARNING in lsedit/EntityInstance.java (at line 4855)
EntityClass ec;
^^
The local variable ec is never read
----------
----------
143. WARNING in lsedit/ERBox.java (at line 6)
import java.awt.BorderLayout;
^^^^^^^^^^^^^^^^^^^^^
The import java.awt.BorderLayout is never used
----------
144. WARNING in lsedit/ERBox.java (at line 9)
import java.awt.Container;
^^^^^^^^^^^^^^^^^^
The import java.awt.Container is never used
----------
145. WARNING in lsedit/ERBox.java (at line 22)
import javax.swing.JButton;
^^^^^^^^^^^^^^^^^^^
The import javax.swing.JButton is never used
----------
146. WARNING in lsedit/ERBox.java (at line 24)
import javax.swing.JComboBox;
^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JComboBox is never used
----------
147. WARNING in lsedit/ERBox.java (at line 26)
import javax.swing.JDialog;
^^^^^^^^^^^^^^^^^^^
The import javax.swing.JDialog is never used
----------
148. WARNING in lsedit/ERBox.java (at line 30)
import javax.swing.JPanel;
^^^^^^^^^^^^^^^^^^
The import javax.swing.JPanel is never used
----------
149. WARNING in lsedit/ERBox.java (at line 254)
class ShownEntityChkBox extends JComponent implements ItemListener, MouseListener
^^^^^^^^^^^^^^^^^
The serializable class ShownEntityChkBox does not declare a static final serialVersionUID field of type long
----------
150. WARNING in lsedit/ERBox.java (at line 277)
Dimension d;
^
The local variable d is never read
----------
151. WARNING in lsedit/ERBox.java (at line 424)
mi = new JMenuItem(erBox.g_editInheritanceRules_text);
^^^^^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_editInheritanceRules_text should be accessed in a static way
----------
152. WARNING in lsedit/ERBox.java (at line 428)
mi = new JMenuItem(erBox.g_editClassAttributes_text);
^^^^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_editClassAttributes_text should be accessed in a static way
----------
153. WARNING in lsedit/ERBox.java (at line 432)
mi = new JMenuItem(erBox.g_editElisionRules_text);
^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_editElisionRules_text should be accessed in a static way
----------
154. WARNING in lsedit/ERBox.java (at line 440)
mi = new JMenuItem(erBox.g_showValidAttributes_text);
^^^^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_showValidAttributes_text should be accessed in a static way
----------
155. WARNING in lsedit/ERBox.java (at line 444)
mi = new JMenuItem(erBox.g_validateAttributes_text);
^^^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_validateAttributes_text should be accessed in a static way
----------
156. WARNING in lsedit/ERBox.java (at line 448)
mi = new JMenuItem(erBox.g_createEntitiesOfThisClass_text);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The static field ERBox.g_createEntitiesOfThisClass_text should be accessed in a static way
----------
157. WARNING in lsedit/ERBox.java (at line 762)
class ShownRelnChkBox extends JComponent implements ItemListener, MouseListener
^^^^^^^^^^^^^^^
The serializable class ShownRelnChkBox does not declare a static final serialVersionUID field of type long
----------
158. WARNING in lsedit/ERBox.java (at line 1077)
public class ERBox extends TabBox /* extends JComponent */ implements ChangeListener, TaListener, MouseListener
^^^^^
The serializable class ERBox does not declare a static final serialVersionUID field of type long
----------
----------
159. WARNING in lsedit/ExecuteAction.java (at line 4)
import java.awt.Color;
^^^^^^^^^^^^^^
The import java.awt.Color is never used
----------
160. WARNING in lsedit/ExecuteAction.java (at line 6)
import java.awt.Cursor;
^^^^^^^^^^^^^^^
The import java.awt.Cursor is never used
----------
161. WARNING in lsedit/ExecuteAction.java (at line 7)
import java.awt.Dimension;
^^^^^^^^^^^^^^^^^^
The import java.awt.Dimension is never used
----------
162. WARNING in lsedit/ExecuteAction.java (at line 8)
import java.awt.Event;
^^^^^^^^^^^^^^
The import java.awt.Event is never used
----------
163. WARNING in lsedit/ExecuteAction.java (at line 11)
import java.awt.Graphics;
^^^^^^^^^^^^^^^^^
The import java.awt.Graphics is never used
----------
164. WARNING in lsedit/ExecuteAction.java (at line 12)
import java.awt.event.ItemEvent;
^^^^^^^^^^^^^^^^^^^^^^^^
The import java.awt.event.ItemEvent is never used
----------
165. WARNING in lsedit/ExecuteAction.java (at line 13)
import java.awt.event.ItemListener;
^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import java.awt.event.ItemListener is never used
----------
166. WARNING in lsedit/ExecuteAction.java (at line 14)
import java.awt.event.KeyEvent;
^^^^^^^^^^^^^^^^^^^^^^^
The import java.awt.event.KeyEvent is never used
----------
167. WARNING in lsedit/ExecuteAction.java (at line 20)
import java.io.FileReader;
^^^^^^^^^^^^^^^^^^
The import java.io.FileReader is never used
----------
168. WARNING in lsedit/ExecuteAction.java (at line 21)
import java.io.BufferedReader;
^^^^^^^^^^^^^^^^^^^^^^
The import java.io.BufferedReader is never used
----------
169. WARNING in lsedit/ExecuteAction.java (at line 29)
import javax.swing.JComponent;
^^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JComponent is never used
----------
170. WARNING in lsedit/ExecuteAction.java (at line 32)
import javax.swing.filechooser.FileFilter;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.filechooser.FileFilter is never used
----------
171. WARNING in lsedit/ExecuteAction.java (at line 33)
import javax.swing.JFrame;
^^^^^^^^^^^^^^^^^^
The import javax.swing.JFrame is never used
----------
172. WARNING in lsedit/ExecuteAction.java (at line 37)
import javax.swing.JScrollBar;
^^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JScrollBar is never used
----------
173. WARNING in lsedit/ExecuteAction.java (at line 40)
import javax.swing.JViewport;
^^^^^^^^^^^^^^^^^^^^^
The import javax.swing.JViewport is never used
----------
174. WARNING in lsedit/ExecuteAction.java (at line 144)
class ExecuteExamples extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^
The serializable class ExecuteExamples does not declare a static final serialVersionUID field of type long
----------
175. WARNING in lsedit/ExecuteAction.java (at line 344)
class ExecuteConfigure extends JDialog implements ActionListener {
^^^^^^^^^^^^^^^^
The serializable class ExecuteConfigure does not declare a static final serialVersionUID field of type long
----------
176. WARNING in lsedit/ExecuteAction.java (at line 418)
File defaultfile, startfile, file;
^^^^^^^^^
The local variable startfile is never read
----------
177. WARNING in lsedit/ExecuteAction.java (at line 501)
int i;
^
The local variable i is never read
----------
178. WARNING in lsedit/ExecuteAction.java (at line 529)
String[] programs;
^^^^^^^^
The local variable programs is never read
----------
179. WARNING in lsedit/ExecuteAction.java (at line 530)
String program;
^^^^^^^
The local variable program is never read
----------
180. WARNING in lsedit/ExecuteAction.java (at line 533)
String command, title;
^^^^^^^
The local variable command is never read
----------
181. WARNING in lsedit/ExecuteAction.java (at line 699)
String tag, rules;
^^^^^
The local variable rules is never read
----------
182. WARNING in lsedit/ExecuteAction.java (at line 722)
String string, string1, rules;
^^^^^^^
The local variable string1 is never read
----------
183. WARNING in lsedit/ExecuteAction.java (at line 930)
int i, j, k;
^
The local variable k is never read
----------
184. WARNING in lsedit/ExecuteAction.java (at line 987)
int cnt = 0;
^^^
The local variable cnt is never read
----------
----------
185. WARNING in lsedit/ExpandLayout.java (at line 3)
import java.util.Enumeration;
^^^^^^^^^^^^^^^^^^^^^
The import java.util.Enumeration is never used
----------
186. WARNING in lsedit/ExpandLayout.java (at line 11)
import java.awt.Cursor;
^^^^^^^^^^^^^^^
The import java.awt.Cursor is never used
----------
187. WARNING in lsedit/ExpandLayout.java (at line 14)
import java.awt.FontMetrics;
^^^^^^^^^^^^^^^^^^^^
The import java.awt.FontMetrics is never used
----------
188. WARNING in lsedit/ExpandLayout.java (at line 18)
import java.awt.Rectangle;
^^^^^^^^^^^^^^^^^^
The import java.awt.Rectangle is never used
----------
189. WARNING in lsedit/ExpandLayout.java (at line 24)
import java.awt.event.MouseEvent;
^^^^^^^^^^^^^^^^^^^^^^^^^
The import java.awt.event.MouseEvent is never used
----------
190. WARNING in lsedit/ExpandLayout.java (at line 25)
import java.awt.event.MouseListener;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import java.awt.event.MouseListener is never used
----------
191. WARNING in lsedit/ExpandLayout.java (at line 263)
class ExpandConfigure extends JDialog implements ActionListener, ItemListener {
^^^^^^^^^^^^^^^
The serializable class ExpandConfigure does not declare a static final serialVersionUID field of type long
----------
192. WARNING in lsedit/ExpandLayout.java (at line 265)
class ExpandImage extends JComponent
^^^^^^^^^^^
The serializable class ExpandImage does not declare a static final serialVersionUID field of type long
----------