IT-KIMI_SHI\SINOIT.KIMI
2018-06-04 080a53521324727b58de1f31b4dec3ae0bbfd4ee
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
/frame
mŠ7org.eclipse.jst.j2ee.ClasspathDependencyValidatorMarker targetObjectmessageƒClasspath entry /frame/WebRoot/lib/dom4j-1.6.1.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName"/frame/WebRoot/lib/dom4j-1.6.1.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Òm‹ targetObjectmessage„Classpath entry /frame/WebRoot/lib/druid-0.2.18.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName#/frame/WebRoot/lib/druid-0.2.18.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8ÒmŒ targetObjectmessage„Classpath entry /frame/WebRoot/lib/log4j-1.2.16.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName#/frame/WebRoot/lib/log4j-1.2.16.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Òm targetObjectmessageŠClasspath entry /frame/WebRoot/lib/commons-codec-1.10.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName)/frame/WebRoot/lib/commons-codec-1.10.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8ÒmŽ targetObjectmessageClasspath entry /frame/WebRoot/lib/commons-collections4-4.1.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName//frame/WebRoot/lib/commons-collections4-4.1.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Òm targetObjectmessage‹Classpath entry /frame/WebRoot/lib/commons-logging-1.2.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName*/frame/WebRoot/lib/commons-logging-1.2.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Óm targetObjectmessage‚Classpath entry /frame/WebRoot/lib/junit-4.12.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName!/frame/WebRoot/lib/junit-4.12.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Óm‘ targetObjectmessage€Classpath entry /frame/WebRoot/lib/poi-3.17.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName/frame/WebRoot/lib/poi-3.17.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Óm’ targetObjectmessage†Classpath entry /frame/WebRoot/lib/poi-ooxml-3.17.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName%/frame/WebRoot/lib/poi-ooxml-3.17.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Óm“ targetObjectmessageŽClasspath entry /frame/WebRoot/lib/poi-ooxml-schemas-3.17.jar will not be exported or published. Runtime ClassNotFoundExceptions may result.  validationSeverity    groupName-/frame/WebRoot/lib/poi-ooxml-schemas-3.17.jarlocationP/frameownerGorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidatorseverity    messageIdNonTaggedExportedClassescº;8Ó"/frame/src/frame/util/MapList.javakŸorg.eclipse.jdt.core.taskmessageTODO Auto-generated method stubid Âpriority    charStart
ð
lineNumber charEnd  userEditablesourceIdJDTcº;1)k messageTODO Auto-generated method stubid Âpriority    charStart ]
lineNumber¦charEnd | userEditablesourceIdJDTcº;1)k¡messageTODO Auto-generated method stubid Âpriority    charStart Ö
lineNumber¬charEnd õ userEditablesourceIdJDTcº;1)k¢messageTODO Auto-generated method stubid Âpriority    charStart T
lineNumber²charEnd s userEditablesourceIdJDTcº;1)k£messageTODO Auto-generated method stubid Âpriority    charStart Ë
lineNumber¸charEnd ê userEditablesourceIdJDTcº;1)k¤messageTODO Auto-generated method stubid Âpriority    charStart B
lineNumber¾charEnd a userEditablesourceIdJDTcº;1))/frame/src/frame/upload/util/Streams.javaqçorg.eclipse.jdt.core.problem    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÙ
lineNumberseveritycharEndîsourceIdJDTcºëFýqè    idmessage5InvalidFileNameException cannot be resolved to a type    arguments1:InvalidFileNameException
categoryId(    charStartz
lineNumberÁseveritycharEnd’sourceIdJDTcºëFý4/frame/src/frame/upload/util/LimitedInputStream.javarb    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart·
lineNumberseveritycharEndÌsourceIdJDTcºëG5/frame/src/frame/upload/util/FileItemHeadersImpl.javart    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStartº
lineNumber+severitycharEnd½sourceIdJDTc»
rUru    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStartÝ
lineNumber+severitycharEndäsourceIdJDTc»
rUrv    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart¶
lineNumber2severitycharEndºsourceIdJDTc»
rUrw    id<messageXArrayList is a raw type. References to generic type ArrayList<E> should be parameterized    arguments,2:java.util.ArrayList#java.util.ArrayList<E>
categoryId‚    charStartÐ
lineNumber2severitycharEndÙsourceIdJDTc»
rUrx    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart@
lineNumber6severitycharEndDsourceIdJDTc»
rUry    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStartX
lineNumber6severitycharEnd\sourceIdJDTc»
rUrz    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStart
lineNumber=severitycharEndsourceIdJDTc»
rVr{    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStartk
lineNumberAseveritycharEndssourceIdJDTc»
rVr|    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStartÅ
lineNumberCseveritycharEndÉsourceIdJDTc»
rVr}    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStartÝ
lineNumberCseveritycharEndásourceIdJDTc»
rVr~    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart
¼
lineNumberRseveritycharEnd
ÀsourceIdJDTc»
rVr    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart
Ô
lineNumberRseveritycharEnd
ØsourceIdJDTc»
rVr€    id<messageXArrayList is a raw type. References to generic type ArrayList<E> should be parameterized    arguments,2:java.util.ArrayList#java.util.ArrayList<E>
categoryId‚    charStart L
lineNumberTseveritycharEnd UsourceIdJDTc»
rVr    idmessage„Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized    argumentsI4:put#java.lang.Object, java.lang.Object#java.util.Map#java.util.Map<K,V>
categoryId‚    charStart e
lineNumberUseveritycharEnd sourceIdJDTc»
rVr‚    idmessage|Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized    arguments74:add#java.lang.Object#java.util.List#java.util.List<E>
categoryId‚    charStart «
lineNumberVseveritycharEnd ÈsourceIdJDTc»
rVrƒ    idmessage|Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized    arguments74:add#java.lang.Object#java.util.List#java.util.List<E>
categoryId‚    charStart Ü
lineNumberXseveritycharEnd ösourceIdJDTc»
rV:/frame/src/frame/upload/servlet/ServletRequestContext.javaqå    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart“
lineNumberseveritycharEnd¨sourceIdJDTcºëFýqæ    idmessage+RequestContext cannot be resolved to a type    arguments1:RequestContext
categoryId(    charStartê
lineNumber    severitycharEndøsourceIdJDTcºëFý6/frame/src/frame/upload/servlet/ServletFileUpload.java qé    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEnd¥sourceIdJDTcºëFþqê    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÏ
lineNumber
severitycharEndäsourceIdJDTcºëFþqë    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartþ
lineNumber severitycharEndsourceIdJDTcºëFþqì    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart.
lineNumber severitycharEndCsourceIdJDTcºëFþqí    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartX
lineNumber severitycharEndmsourceIdJDTcºëFþqî    idmessage'FileUpload cannot be resolved to a type    arguments 1:FileUpload
categoryId(    charStart¯
lineNumberseveritycharEnd¹sourceIdJDTcºëFþqï    idmessage,FileItemFactory cannot be resolved to a type    arguments1:FileItemFactory
categoryId(    charStart
lineNumber#severitycharEndžsourceIdJDTcºëFþqð    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStartè
lineNumber'severitycharEndìsourceIdJDTcºëFþqñ    idmessage0FileUploadException cannot be resolved to a type    arguments1:FileUploadException
categoryId(    charStart
lineNumber'severitycharEnd0sourceIdJDTcºëFþqò    idxmessagezThe method parseRequest(HttpServletRequest) from the type ServletFileUpload refers to the missing type FileUploadException    argumentso4:frame.upload.servlet.ServletFileUpload#parseRequest#javax.servlet.http.HttpServletRequest#FileUploadException
categoryId2    charStartC
lineNumber(severitycharEndOsourceIdJDTcºëFþqó    idmessage-FileItemIterator cannot be resolved to a type    arguments1:FileItemIterator
categoryId(    charStartŠ
lineNumber+severitycharEndšsourceIdJDTcºëFþqô    idmessage0FileUploadException cannot be resolved to a type    arguments1:FileUploadException
categoryId(    charStartÎ
lineNumber+severitycharEndásourceIdJDTcºëFþqõ    idmessage'FileUpload cannot be resolved to a type    arguments 1:FileUpload
categoryId(    charStart
lineNumber,severitycharEnd9sourceIdJDTcºëFþ7/frame/src/frame/upload/servlet/FileCleanerCleanup.javar>    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStartÞ
lineNumber1severitycharEndñsourceIdJDTcºëGr?    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart    ›
lineNumber<severitycharEnd    ®sourceIdJDTcºëGr@    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart Œ
lineNumberHseveritycharEnd ŸsourceIdJDTcºëGrA    idxmessageThe method getFileCleaningTracker(ServletContext) from the type FileCleanerCleanup refers to the missing type FileCleaningTracker    argumentsq4:frame.upload.servlet.FileCleanerCleanup#getFileCleaningTracker#javax.servlet.ServletContext#FileCleaningTracker
categoryId2    charStart õ
lineNumberRseveritycharEnd sourceIdJDTcºëGr;    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÜ
lineNumberseveritycharEndñsourceIdJDTcºëGr<    id†message3The import org.apache.commons.io cannot be resolved    arguments1:org.apache.commons.io
categoryId    charStart
lineNumberseveritycharEnd+sourceIdJDTcºëGr=    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStarts
lineNumber/severitycharEnd†sourceIdJDTcºëG:/frame/src/frame/upload/portlet/PortletRequestContext.java
r     idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart
lineNumber4severitycharEnd"sourceIdJDTcºëGr     idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart7
lineNumber5severitycharEndCsourceIdJDTcºëGr    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStartt
lineNumberAseveritycharEnd{sourceIdJDTcºëGr    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart    P
lineNumberJseveritycharEnd    WsourceIdJDTcºëGr    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart
)
lineNumberSseveritycharEnd
0sourceIdJDTcºëGr    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart T
lineNumber^severitycharEnd [sourceIdJDTcºëGr    id†message+The import javax.portlet cannot be resolved    arguments1:javax.portlet
categoryId    charStart•
lineNumberseveritycharEnd¢sourceIdJDTcºëGr        id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart¼
lineNumberseveritycharEndÑsourceIdJDTcºëGr
    idmessage+RequestContext cannot be resolved to a type    arguments1:RequestContext
categoryId(    charStart9
lineNumber#severitycharEndGsourceIdJDTcºëGr     idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStartû
lineNumber*severitycharEndsourceIdJDTcºëG6/frame/src/frame/upload/portlet/PortletFileUpload.javarO    id†message+The import javax.portlet cannot be resolved    arguments1:javax.portlet
categoryId    charStart’
lineNumberseveritycharEndŸsourceIdJDTcºëG    rP    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartº
lineNumberseveritycharEndÏsourceIdJDTcºëG    rQ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartù
lineNumberseveritycharEndsourceIdJDTcºëG    rR    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart(
lineNumberseveritycharEnd=sourceIdJDTcºëG    rS    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartX
lineNumberseveritycharEndmsourceIdJDTcºëG    rT    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart‚
lineNumberseveritycharEnd—sourceIdJDTcºëG    rU    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart°
lineNumberseveritycharEndÅsourceIdJDTcºëG    rV    idmessage'FileUpload cannot be resolved to a type    arguments 1:FileUpload
categoryId(    charStart    `
lineNumber9severitycharEnd    jsourceIdJDTcºëG    rW    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStart 4
lineNumberGseveritycharEnd AsourceIdJDTcºëG    rX    id"2message!FileUploadBase cannot be resolved    arguments1:FileUploadBase
categoryId2    charStart ]
lineNumberHseveritycharEnd ksourceIdJDTcºëG    rY    idmessage,FileItemFactory cannot be resolved to a type    arguments1:FileItemFactory
categoryId(    charStartƒ
lineNumbercseveritycharEnd’sourceIdJDTcºëG    rZ    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart9
lineNumberwseveritycharEnd=sourceIdJDTcºëG    r[    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStartZ
lineNumberwseveritycharEndgsourceIdJDTcºëG    r\    idmessage0FileUploadException cannot be resolved to a type    arguments1:FileUploadException
categoryId(    charStart…
lineNumberxseveritycharEnd˜sourceIdJDTcºëG    r]    idxmessageoThe method parseRequest(ActionRequest) from the type PortletFileUpload refers to the missing type ActionRequest    argumentsQ4:frame.upload.portlet.PortletFileUpload#parseRequest#ActionRequest#ActionRequest
categoryId2    charStart«
lineNumberyseveritycharEnd·sourceIdJDTcºëG
r^    idmessage-FileItemIterator cannot be resolved to a type    arguments1:FileItemIterator
categoryId(    charStartÎ
lineNumberŒseveritycharEndÞsourceIdJDTcºëG
r_    idmessage*ActionRequest cannot be resolved to a type    arguments1:ActionRequest
categoryId(    charStartï
lineNumberŒseveritycharEndüsourceIdJDTcºëG
r`    idmessage0FileUploadException cannot be resolved to a type    arguments1:FileUploadException
categoryId(    charStart
lineNumberseveritycharEnd-sourceIdJDTcºëG
ra    idmessage'FileUpload cannot be resolved to a type    arguments 1:FileUpload
categoryId(    charStartM
lineNumberŽseveritycharEnd…sourceIdJDTcºëG
5/frame/src/frame/upload/disk/DiskFileItemFactory.java rH    idmessage%FileItem cannot be resolved to a type    arguments
1:FileItem
categoryId(    charStart§
lineNumber>severitycharEnd¯sourceIdJDTcºëGrI    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart
lineNumber@severitycharEnd sourceIdJDTcºëGrJ    idxmessagetThe method getFileCleaningTracker() from the type DiskFileItemFactory refers to the missing type FileCleaningTracker    argumentsV4:frame.upload.disk.DiskFileItemFactory#getFileCleaningTracker#   #FileCleaningTracker
categoryId2    charStart«
lineNumber@severitycharEndÁsourceIdJDTcºëGrK    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart    U
lineNumberGseveritycharEnd    hsourceIdJDTcºëGrL    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart    ”
lineNumberHseveritycharEnd    §sourceIdJDTcºëGrM    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart    Ú
lineNumberKseveritycharEnd    ísourceIdJDTcºëGrN    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart
 
lineNumberLseveritycharEnd
sourceIdJDTcºëGrB    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartp
lineNumberseveritycharEnd…sourceIdJDTcºëGrC    id†message3The import org.apache.commons.io cannot be resolved    arguments1:org.apache.commons.io
categoryId    charStart¡
lineNumberseveritycharEnd¶sourceIdJDTcºëGrD    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÖ
lineNumberseveritycharEndësourceIdJDTcºëGrE    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartþ
lineNumberseveritycharEndsourceIdJDTcºëGrF    idmessage,FileItemFactory cannot be resolved to a type    arguments1:FileItemFactory
categoryId(    charStartV
lineNumberseveritycharEndesourceIdJDTcºëGrG    idmessage0FileCleaningTracker cannot be resolved to a type    arguments1:FileCleaningTracker
categoryId(    charStart
lineNumber!severitycharEndsourceIdJDTcºëG./frame/src/frame/upload/disk/DiskFileItem.java)r     idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStartø
lineNumber@severitycharEndüsourceIdJDTcºëGr!    idmessage,ParameterParser cannot be resolved to a type    arguments1:ParameterParser
categoryId(    charStart    Ê
lineNumberIseveritycharEnd    ÙsourceIdJDTcºëGr"    idmessage,ParameterParser cannot be resolved to a type    arguments1:ParameterParser
categoryId(    charStart    ç
lineNumberIseveritycharEnd    ösourceIdJDTcºëGr#    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart
,
lineNumberKseveritycharEnd
/sourceIdJDTcºëGr$    id"2messageStreams cannot be resolved    arguments    1:Streams
categoryId2    charStart
Æ
lineNumberPseveritycharEnd
ÍsourceIdJDTcºëGr%    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart n
lineNumberWseveritycharEnd rsourceIdJDTcºëGr&    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart Z
lineNumberaseveritycharEnd ^sourceIdJDTcºëGr'    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart ƒ
lineNumberbseveritycharEnd ‡sourceIdJDTcºëGr(    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart Ê
lineNumbereseveritycharEnd ÎsourceIdJDTcºëGr)    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart z
lineNumberlseveritycharEnd ~sourceIdJDTcºëGr*    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart\
lineNumberuseveritycharEnd`sourceIdJDTcºëGr+    id"2messageIOUtils cannot be resolved    arguments    1:IOUtils
categoryId2    charStart˜
lineNumberµseveritycharEndŸsourceIdJDTcºëGr,    idmessage0FileUploadException cannot be resolved to a type    arguments1:FileUploadException
categoryId(    charStartŒ
lineNumberÊseveritycharEndŸsourceIdJDTcºëGr-    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart{
lineNumberëseveritycharEndsourceIdJDTcºëGr.    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStartÆ
lineNumberíseveritycharEndÊsourceIdJDTcºëGr/    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStartÑ
lineNumberíseveritycharEndésourceIdJDTcºëGr0    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart!
lineNumberïseveritycharEnd%sourceIdJDTcºëGr1    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStartf
lineNumberóseveritycharEndjsourceIdJDTcºëGr2    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart|
lineNumberóseveritycharEnd€sourceIdJDTcºëGr3    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStartÑ
lineNumber÷severitycharEndÕsourceIdJDTcºëGr4    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart#ß
lineNumber+severitycharEnd#ãsourceIdJDTcºëGr5    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart$e
lineNumber/severitycharEnd$isourceIdJDTcºëGr6    id"2messageIOUtils cannot be resolved    arguments    1:IOUtils
categoryId2    charStart&X
lineNumber@severitycharEnd&_sourceIdJDTcºëGr7    idmessage,FileItemHeaders cannot be resolved to a type    arguments1:FileItemHeaders
categoryId(    charStart'
lineNumberIseveritycharEnd'sourceIdJDTcºëGr8    idmessage,FileItemHeaders cannot be resolved to a type    arguments1:FileItemHeaders
categoryId(    charStart'<
lineNumberJseveritycharEnd'CsourceIdJDTcºëGr9    idmessage,FileItemHeaders cannot be resolved to a type    arguments1:FileItemHeaders
categoryId(    charStart'j
lineNumberMseveritycharEnd'ysourceIdJDTcºëGr:    idmessage,FileItemHeaders cannot be resolved to a type    arguments1:FileItemHeaders
categoryId(    charStart'
lineNumberNseveritycharEnd'–sourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÕ
lineNumberseveritycharEndêsourceIdJDTcºëGr    id†message3The import org.apache.commons.io cannot be resolved    arguments1:org.apache.commons.io
categoryId    charStart
lineNumberseveritycharEndsourceIdJDTcºëGr    id†message3The import org.apache.commons.io cannot be resolved    arguments1:org.apache.commons.io
categoryId    charStart-
lineNumberseveritycharEndBsourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartn
lineNumberseveritycharEndƒsourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart–
lineNumberseveritycharEnd«sourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÅ
lineNumberseveritycharEndÚsourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartû
lineNumberseveritycharEndsourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart.
lineNumberseveritycharEndCsourceIdJDTcºëGr    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart]
lineNumberseveritycharEndrsourceIdJDTcºëGr    idmessage%FileItem cannot be resolved to a type    arguments
1:FileItem
categoryId(    charStart°
lineNumberseveritycharEnd¸sourceIdJDTcºëGr    idmessage3FileItemHeadersSupport cannot be resolved to a type    arguments1:FileItemHeadersSupport
categoryId(    charStartº
lineNumberseveritycharEndÐsourceIdJDTcºëGr    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart
lineNumber,severitycharEnd sourceIdJDTcºëGr    idmessage,FileItemHeaders cannot be resolved to a type    arguments1:FileItemHeaders
categoryId(    charStartv
lineNumber/severitycharEnd…sourceIdJDTcºëGr    idmessage5DeferredFileOutputStream cannot be resolved to a type    arguments1:DeferredFileOutputStream
categoryId(    charStart—
lineNumber<severitycharEnd›sourceIdJDTcºëG-/frame/src/frame/upload/ProgressListener.javaqä    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartS
lineNumberseveritycharEndhsourceIdJDTcºëFû,/frame/src/frame/upload/ParameterParser.java qÙ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart¹
lineNumberãseveritycharEnd¼sourceIdJDTcºëFùqÚ    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart?
lineNumberåseveritycharEndFsourceIdJDTcºëFùqÛ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart
lineNumberseveritycharEndsourceIdJDTcºëFùqÜ    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStartï
lineNumberseveritycharEndösourceIdJDTcºëFùqÝ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart ­
lineNumberseveritycharEnd °sourceIdJDTcºëFùqÞ    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart!
lineNumberseveritycharEnd!sourceIdJDTcºëFùqß    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart#&
lineNumber$severitycharEnd#)sourceIdJDTcºëFùqà    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart#Ë
lineNumber+severitycharEnd#ÒsourceIdJDTcºëFùqá    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart#ê
lineNumber-severitycharEnd#ñsourceIdJDTcºëFùqâ    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart#ÿ
lineNumber-severitycharEnd$sourceIdJDTcºëFùqã    idmessageŒType safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized    argumentsQ4:put#java.lang.Object, java.lang.Object#java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart'I
lineNumberDseveritycharEnd'jsourceIdJDTcºëFù,/frame/src/frame/upload/MultipartStream.java
qР   id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart0
lineNumberseveritycharEndEsourceIdJDTcºëFóqÑ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart_
lineNumberseveritycharEndtsourceIdJDTcºëFóqÒ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart‘
lineNumberseveritycharEnd¦sourceIdJDTcºëFóqÓ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart¿
lineNumberseveritycharEndÔsourceIdJDTcºëFóqÔ    id"2messageStreams cannot be resolved    arguments    1:Streams
categoryId2    charStartOÔ
lineNumberTseveritycharEndOÛsourceIdJDTcºëFóqÕ    id `messagesThe serializable class MalformedStreamException does not declare a static final serialVersionUID field of type long    arguments1:MalformedStreamException
categoryIdZ    charStarta
lineNumberâseveritycharEnda1sourceIdJDTcºëFóqÖ    id `messagesThe serializable class IllegalBoundaryException does not declare a static final serialVersionUID field of type long    arguments1:IllegalBoundaryException
categoryIdZ    charStartc¹
lineNumberûseveritycharEndcÑsourceIdJDTcºëFóq×    idmessage&Closeable cannot be resolved to a type    arguments 1:Closeable
categoryId(    charStartf„
lineNumberseveritycharEndfsourceIdJDTcºëFóqØmessage3TODO</strong> allow limiting maximum header size toid Âpriority    charStartEh
lineNumber charEndE›sourceIdJDT userEditablecºëFóqÏ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEndsourceIdJDTcºëFó+/frame/src/frame/upload/FileUploadBase.java*q¥    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStarth
lineNumberseveritycharEnd}sourceIdJDTcºëFèq¦    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart§
lineNumberseveritycharEnd¼sourceIdJDTcºëFèq§    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartà
lineNumberseveritycharEndõsourceIdJDTcºëFèq¨    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEnd2sourceIdJDTcºëFèq©    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartK
lineNumberseveritycharEnd`sourceIdJDTcºëFèqª    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartƒ
lineNumberseveritycharEnd˜sourceIdJDTcºëFèq«    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartº
lineNumberseveritycharEndÏsourceIdJDTcºëFèq¬    id"2message$ServletFileUpload cannot be resolved    arguments1:ServletFileUpload
categoryId2    charStartÅ
lineNumber(severitycharEndÖsourceIdJDTcºëFèq­    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart
b
lineNumberUseveritycharEnd
fsourceIdJDTcºëFèq®    idmessage2ServletRequestContext cannot be resolved to a type    arguments1:ServletRequestContext
categoryId(    charStart
Ê
lineNumberVseveritycharEnd
ßsourceIdJDTcºëFèq¯    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart Ÿ
lineNumber]severitycharEnd £sourceIdJDTcºëFèq°    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart ë
lineNumber^severitycharEnd ïsourceIdJDTcºëFèq±    id<messageXArrayList is a raw type. References to generic type ArrayList<E> should be parameterized    arguments,2:java.util.ArrayList#java.util.ArrayList<E>
categoryId‚    charStart ü
lineNumber^severitycharEnd sourceIdJDTcºëFèq²    idmessage|Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized    arguments74:add#java.lang.Object#java.util.List#java.util.List<E>
categoryId‚    charStart«
lineNumbermseveritycharEnd¾sourceIdJDTcºëFèq³    id"2messageStreams cannot be resolved    arguments    1:Streams
categoryId2    charStartì
lineNumberoseveritycharEndósourceIdJDTcºëFèq´    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStartü
lineNumberˆseveritycharEndsourceIdJDTcºëFèqµ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart
lineNumber—severitycharEndsourceIdJDTcºëFèq¶    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStartù
lineNumber§severitycharEndüsourceIdJDTcºëFèq·    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStartÉ
lineNumber·severitycharEndÌsourceIdJDTcºëFèq¸    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStartM
lineNumberÓseveritycharEndPsourceIdJDTcºëFéq¹    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStartn
lineNumberÜseveritycharEndqsourceIdJDTcºëFéqº    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart 
lineNumberàseveritycharEnd sourceIdJDTcºëFéq»    idmessage0FileItemHeadersImpl cannot be resolved to a type    arguments1:FileItemHeadersImpl
categoryId(    charStart!§
lineNumberêseveritycharEnd!ºsourceIdJDTcºëFéq¼    idxmessagekThe method newFileItemHeaders() from the type FileUploadBase refers to the missing type FileItemHeadersImpl    argumentsH4:frame.upload.FileUploadBase#newFileItemHeaders#   #FileItemHeadersImpl
categoryId2    charStart!Å
lineNumberêseveritycharEnd!×sourceIdJDTcºëFéq½    idmessage0FileItemHeadersImpl cannot be resolved to a type    arguments1:FileItemHeadersImpl
categoryId(    charStart%Ã
lineNumber    severitycharEnd%ÖsourceIdJDTcºëFéq¾    idmessage0FileItemHeadersImpl cannot be resolved to a type    arguments1:FileItemHeadersImpl
categoryId(    charStart&
lineNumber
severitycharEnd&sourceIdJDTcºëFéq¿    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart&1
lineNumber severitycharEnd&4sourceIdJDTcºëFéqÀ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart&¶
lineNumberseveritycharEnd&¹sourceIdJDTcºëFéqÁ    id<messageVHashMap is a raw type. References to generic type HashMap<K,V> should be parameterized    arguments*2:java.util.HashMap#java.util.HashMap<K,V>
categoryId‚    charStart&Ç
lineNumberseveritycharEnd&ÎsourceIdJDTcºëFéq    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStart&à
lineNumberseveritycharEnd&èsourceIdJDTcºëFéqà   id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStart'b
lineNumberseveritycharEnd'jsourceIdJDTcºëFéqÄ    idmessage„Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized    argumentsI4:put#java.lang.Object, java.lang.Object#java.util.Map#java.util.Map<K,V>
categoryId‚    charStart(C
lineNumberseveritycharEnd(fsourceIdJDTcºëFéqÅ    idmessage0FileItemHeadersImpl cannot be resolved to a type    arguments1:FileItemHeadersImpl
categoryId(    charStart*Ñ
lineNumber+severitycharEnd*äsourceIdJDTcºëFéqÆ    id<messageNMap is a raw type. References to generic type Map<K,V> should be parameterized    arguments"2:java.util.Map#java.util.Map<K,V>
categoryId‚    charStart,¶
lineNumber7severitycharEnd,¹sourceIdJDTcºëFéqÇ    idmessage,ItemInputStream cannot be resolved to a type    arguments1:ItemInputStream
categoryId(    charStart0,
lineNumberKseveritycharEnd0;sourceIdJDTcºëFéqÈ    idmessageLType mismatch: cannot convert from new LimitedInputStream(){} to InputStream    arguments02:new LimitedInputStream(){}#java.io.InputStream
categoryId(    charStart3§
lineNumber[severitycharEnd7sourceIdJDTcºëFéqÉ    idmessage/LimitedInputStream cannot be resolved to a type    arguments1:LimitedInputStream
categoryId(    charStart3«
lineNumber[severitycharEnd3½sourceIdJDTcºëFéqÊ    id"2messageStreams cannot be resolved    arguments    1:Streams
categoryId2    charStart8f
lineNumberxseveritycharEnd8msourceIdJDTcºëFéqË    idmessage&Closeable cannot be resolved to a type    arguments 1:Closeable
categoryId(    charStart9Õ
lineNumberƒseveritycharEnd9ésourceIdJDTcºëFéqÌ    idmessage&Closeable cannot be resolved to a type    arguments 1:Closeable
categoryId(    charStart9×
lineNumberƒseveritycharEnd9àsourceIdJDTcºëFéqÍ    idmessageLType mismatch: cannot convert from new LimitedInputStream(){} to InputStream    arguments02:new LimitedInputStream(){}#java.io.InputStream
categoryId(    charStart@j
lineNumber°severitycharEndBLsourceIdJDTcºëFéqΠ   idmessage/LimitedInputStream cannot be resolved to a type    arguments1:LimitedInputStream
categoryId(    charStart@n
lineNumber°severitycharEnd@€sourceIdJDTcºëFé'/frame/src/frame/upload/FileUpload.javaq£    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartS
lineNumberseveritycharEndhsourceIdJDTcºëFÛq¤    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart‚
lineNumberseveritycharEnd—sourceIdJDTcºëFÛ+/frame/src/frame/upload/FileItemStream.javaqŸ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEnd¤sourceIdJDTcºëFÙq     id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÅ
lineNumberseveritycharEndÚsourceIdJDTcºëFÙq¡    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartó
lineNumberseveritycharEndsourceIdJDTcºëFÙq¢    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart!
lineNumberseveritycharEnd6sourceIdJDTcºëFÙ-/frame/src/frame/upload/FileItemIterator.javaqž    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÿ
lineNumberseveritycharEndsourceIdJDTcºëFØq›    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartp
lineNumberseveritycharEnd…sourceIdJDTcºëFØqœ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartž
lineNumberseveritycharEnd³sourceIdJDTcºëFØq    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÌ
lineNumberseveritycharEndásourceIdJDTcºëFØ3/frame/src/frame/upload/FileItemHeadersSupport.javaq™    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart{
lineNumberseveritycharEndsourceIdJDTcºëFÖqš    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartª
lineNumberseveritycharEnd¿sourceIdJDTcºëFÖq˜    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartS
lineNumberseveritycharEndhsourceIdJDTcºëFÖ,/frame/src/frame/upload/FileItemHeaders.javaq–    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStart    ¶
lineNumber<severitycharEnd    ¾sourceIdJDTcºëFÕq—    id<messageVIterator is a raw type. References to generic type Iterator<E> should be parameterized    arguments*2:java.util.Iterator#java.util.Iterator<E>
categoryId‚    charStart ú
lineNumberLseveritycharEnd sourceIdJDTcºëFÕ,/frame/src/frame/upload/FileItemFactory.javaq•    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartS
lineNumberseveritycharEndhsourceIdJDTcºëFÔ%/frame/src/frame/upload/FileItem.javaq”    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEnd$sourceIdJDTcºëFÓ+/frame/src/frame/upload/DiskFileUpload.java
qŠ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart²
lineNumberseveritycharEndÇsourceIdJDTcºëFÒq‹    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartè
lineNumberseveritycharEndýsourceIdJDTcºëFÒqŒ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStart
lineNumberseveritycharEnd,sourceIdJDTcºëFÒq    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartE
lineNumberseveritycharEndZsourceIdJDTcºëFÒqŽ    idmessageLType mismatch: cannot convert from DefaultFileItemFactory to FileItemFactory    argumentsB2:frame.upload.DefaultFileItemFactory#frame.upload.FileItemFactory
categoryId(    charStartM
lineNumbermseveritycharEnd\sourceIdJDTcºëFÒq    iddmessageNThe method getSizeThreshold() is undefined for the type DefaultFileItemFactory    arguments:3:frame.upload.DefaultFileItemFactory#getSizeThreshold#   
categoryId2    charStartÔ
lineNumberŠseveritycharEndäsourceIdJDTcºëFÒq    iddmessageQThe method setSizeThreshold(int) is undefined for the type DefaultFileItemFactory    arguments:3:frame.upload.DefaultFileItemFactory#setSizeThreshold#int
categoryId2    charStart\
lineNumber˜severitycharEndlsourceIdJDTcºëFÒq‘    iddmessageKThe method getRepository() is undefined for the type DefaultFileItemFactory    arguments73:frame.upload.DefaultFileItemFactory#getRepository#   
categoryId2    charStart
lineNumber§severitycharEnd$sourceIdJDTcºëFÒq’    iddmessageOThe method setRepository(File) is undefined for the type DefaultFileItemFactory    arguments@3:frame.upload.DefaultFileItemFactory#setRepository#java.io.File
categoryId2    charStartÝ
lineNumber¶severitycharEndêsourceIdJDTcºëFÒq“    id<messageNList is a raw type. References to generic type List<E> should be parameterized    arguments"2:java.util.List#java.util.List<E>
categoryId‚    charStart
lineNumberÏseveritycharEndsourceIdJDTcºëFÒ3/frame/src/frame/upload/DefaultFileItemFactory.javaqƒ    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartk
lineNumberseveritycharEnd€sourceIdJDTcºëFÏq„    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartš
lineNumberseveritycharEnd¯sourceIdJDTcºëFÏq…    id†message3The import foundation.fileupload cannot be resolved    arguments1:foundation.fileupload
categoryId    charStartÄ
lineNumberseveritycharEndÙsourceIdJDTcºëFÏq†    idmessage0DiskFileItemFactory cannot be resolved to a type    arguments1:DiskFileItemFactory
categoryId(    charStartñ
lineNumber2severitycharEndsourceIdJDTcºëFÏq‡    idmessage>Type mismatch: cannot convert from DefaultFileItem to FileItem    arguments42:frame.upload.DefaultFileItem#frame.upload.FileItem
categoryId(    charStart
lineNumberkseveritycharEnd“sourceIdJDTcºëFÏqˆ    iddmessageNThe method getSizeThreshold() is undefined for the type DefaultFileItemFactory    arguments:3:frame.upload.DefaultFileItemFactory#getSizeThreshold#   
categoryId2    charStarto
lineNumberlseveritycharEndsourceIdJDTcºëFÐq‰    iddmessageKThe method getRepository() is undefined for the type DefaultFileItemFactory    arguments73:frame.upload.DefaultFileItemFactory#getRepository#   
categoryId2    charStartƒ
lineNumberlseveritycharEndsourceIdJDTcºëFÐ,/frame/src/frame/upload/DefaultFileItem.javaq    id†message(The import foundation cannot be resolved    arguments 1:foundation
categoryId    charStartk
lineNumberseveritycharEndusourceIdJDTcºëFÌq‚    idmessage)DiskFileItem cannot be resolved to a type    arguments1:DiskFileItem
categoryId(    charStart=
lineNumber0severitycharEndIsourceIdJDTcºëFÌ'/frame/src/frame/server/Dispatcher.java$o&    idmessage+ResourceFilter cannot be resolved to a type    arguments1:ResourceFilter
categoryId(    charStartÔ
lineNumber+severitycharEndâsourceIdJDTcºèñ“o'    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStartA
lineNumber-severitycharEndLsourceIdJDTcºèñ“o(    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart‰
lineNumber.severitycharEnd”sourceIdJDTcºèñ“o)    idmessage(ExcludeList cannot be resolved to a type    arguments 1:ExcludeList
categoryId(    charStartº
lineNumber/severitycharEndÅsourceIdJDTcºèñ“o*    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart
lineNumber4severitycharEnd%sourceIdJDTcºèñ“o+    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStartL
lineNumber4severitycharEndWsourceIdJDTcºèñ“o,    idmessage+ResourceFilter cannot be resolved to a type    arguments1:ResourceFilter
categoryId(    charStart‹
lineNumber6severitycharEndsourceIdJDTcºèñ“o-    idmessage+ResourceFilter cannot be resolved to a type    arguments1:ResourceFilter
categoryId(    charStart¤
lineNumber6severitycharEnd²sourceIdJDTcºèñ“o.    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart¹
lineNumber7severitycharEndÅsourceIdJDTcºèñ“o/    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStartÜ
lineNumber7severitycharEndçsourceIdJDTcºèñ“o0    idmessage(ExcludeList cannot be resolved to a type    arguments 1:ExcludeList
categoryId(    charStart
lineNumber9severitycharEnd%sourceIdJDTcºèñ“o1    idmessage(ExcludeList cannot be resolved to a type    arguments 1:ExcludeList
categoryId(    charStart,
lineNumber9severitycharEnd7sourceIdJDTcºèñ“o2    idSmessage,RequestPath cannot be resolved to a variable    arguments 1:RequestPath
categoryId2    charStart    H
lineNumberNseveritycharEnd    SsourceIdJDTcºèñ“o3    idmessage(RequestPath cannot be resolved to a type    arguments 1:RequestPath
categoryId(    charStart U
lineNumber\severitycharEnd `sourceIdJDTcºèñ“o4    idmessage(RequestPath cannot be resolved to a type    arguments 1:RequestPath
categoryId(    charStart l
lineNumber\severitycharEnd wsourceIdJDTcºèñ“o5    idmessage(RequestType cannot be resolved to a type    arguments 1:RequestType
categoryId(    charStart †
lineNumber]severitycharEnd ‘sourceIdJDTcºèñ“o6    idSmessage,RequestType cannot be resolved to a variable    arguments 1:RequestType
categoryId2    charStart 
lineNumbercseveritycharEnd sourceIdJDTcºèñ“o7    idmessage+ResourceFilter cannot be resolved to a type    arguments1:ResourceFilter
categoryId(    charStart L
lineNumberkseveritycharEnd ^sourceIdJDTcºèñ“o8    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart<
lineNumber‚severitycharEndGsourceIdJDTcºèñ“o9    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStartV
lineNumber‚severitycharEndbsourceIdJDTcºèñ“o:    idSmessage,RequestType cannot be resolved to a variable    arguments 1:RequestType
categoryId2    charStartö
lineNumberˆseveritycharEndsourceIdJDTcºèñ“o;    idSmessage0VirtualPathType cannot be resolved to a variable    arguments1:VirtualPathType
categoryId2    charStart‰
lineNumberseveritycharEnd˜sourceIdJDTcºèñ“o<    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart4
lineNumberšseveritycharEnd@sourceIdJDTcºèñ”o=    idmessage(ExcludeList cannot be resolved to a type    arguments 1:ExcludeList
categoryId(    charStart„
lineNumberseveritycharEndsourceIdJDTcºèñ”o>    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart³
lineNumber¨severitycharEnd¾sourceIdJDTcºèñ”o?    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStartí
lineNumber©severitycharEndøsourceIdJDTcºèñ”o@    idmessage(RequestPath cannot be resolved to a type    arguments 1:RequestPath
categoryId(    charStart!
lineNumberÈseveritycharEnd,sourceIdJDTcºèñ”oA    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart½
lineNumberüseveritycharEndÍsourceIdJDTcºèñ”oB    idmessage+ResourceFilter cannot be resolved to a type    arguments1:ResourceFilter
categoryId(    charStart±
lineNumberseveritycharEndÃsourceIdJDTcºèñ”oC    idmessage(ExcludeList cannot be resolved to a type    arguments 1:ExcludeList
categoryId(    charStartì
lineNumberseveritycharEnd÷sourceIdJDTcºèñ”oD    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart °
lineNumberseveritycharEnd »sourceIdJDTcºèñ”oE    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart Î
lineNumberseveritycharEnd ÙsourceIdJDTcºèñ”oF    idmessage(VirtualPath cannot be resolved to a type    arguments 1:VirtualPath
categoryId(    charStart ñ
lineNumberseveritycharEnd ýsourceIdJDTcºèñ”oG    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart!ÿ
lineNumber'severitycharEnd"
sourceIdJDTcºèñ”oH    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart"-
lineNumber'severitycharEnd"8sourceIdJDTcºèñ”oI    idmessage(ICallObject cannot be resolved to a type    arguments 1:ICallObject
categoryId(    charStart"G
lineNumber)severitycharEnd"WsourceIdJDTcºèñ”*/frame/src/frame/schedule/ScheduleJob.java
kÌ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart´
categoryId
lineNumber
severitycharEnd¾sourceIdJDTcº;1vkÍ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartÜ
categoryId
lineNumber severitycharEndæsourceIdJDTcº;1vkΠ   message]The type Job cannot be a superinterface of ScheduleJob; a superinterface must be an interfaceid;    arguments 2:frame.schedule.Job#ScheduleJob    charStartF
categoryId(
lineNumberseveritycharEndIsourceIdJDTcº;1vkÏ    message0JobExecutionContext cannot be resolved to a typeid    arguments1:JobExecutionContext    charStartv
categoryId(
lineNumber"severitycharEnd‰sourceIdJDTcº;1vkР   message2JobExecutionException cannot be resolved to a typeid    arguments1:JobExecutionException    charStartš
categoryId(
lineNumber"severitycharEnd¯sourceIdJDTcº;1vkÑ    message&JobDetail cannot be resolved to a typeid    arguments 1:JobDetail    charStartµ
categoryId(
lineNumber#severitycharEnd¾sourceIdJDTcº;1vkÒ    message'JobDataMap cannot be resolved to a typeid    arguments 1:JobDataMap    charStartæ
categoryId(
lineNumber$severitycharEndðsourceIdJDTcº;1vkÉ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart_
categoryId
lineNumberseveritycharEndisourceIdJDTcº;1ukÊ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartw
categoryId
lineNumberseveritycharEndsourceIdJDTcº;1vkË    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart–
categoryId
lineNumber    severitycharEnd sourceIdJDTcº;1v'/frame/src/frame/schedule/Schedule.java2kÓ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartC
categoryId
lineNumberseveritycharEndMsourceIdJDTcº;1‘kÔ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartk
categoryId
lineNumberseveritycharEndusourceIdJDTcº;1‘kÕ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart‹
categoryId
lineNumberseveritycharEnd•sourceIdJDTcº;1‘kÖ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartª
categoryId
lineNumberseveritycharEnd´sourceIdJDTcº;1‘k×    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartÉ
categoryId
lineNumberseveritycharEndÓsourceIdJDTcº;1‘kØ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartç
categoryId
lineNumber    severitycharEndñsourceIdJDTcº;1‘kÙ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart
categoryId
lineNumber
severitycharEnd sourceIdJDTcº;1‘kÚ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart 
categoryId
lineNumber severitycharEnd*sourceIdJDTcº;1‘kÛ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartG
categoryId
lineNumber severitycharEndQsourceIdJDTcº;1‘kÜ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartl
categoryId
lineNumber severitycharEndvsourceIdJDTcº;1‘kÝ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartˆ
categoryId
lineNumberseveritycharEnd’sourceIdJDTcº;1‘kÞ    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart«
categoryId
lineNumberseveritycharEndµsourceIdJDTcº;1‘kß    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartÊ
categoryId
lineNumberseveritycharEndÔsourceIdJDTcº;1‘kà    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart^
categoryId(
lineNumberseveritycharEndgsourceIdJDTcº;1‘ká    message-SchedulerFactory cannot be resolved to a typeid    arguments1:SchedulerFactory    charStart%
categoryId(
lineNumber"severitycharEnd5sourceIdJDTcº;1‘kâ    message0StdSchedulerFactory cannot be resolved to a typeid    arguments1:StdSchedulerFactory    charStartD
categoryId(
lineNumber"severitycharEndWsourceIdJDTcº;1‘kã    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart}
categoryId(
lineNumber#severitycharEnd†sourceIdJDTcº;1‘kä    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart
categoryId(
lineNumber*severitycharEndsourceIdJDTcº;1‘kå    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStarta
categoryId(
lineNumber0severitycharEndjsourceIdJDTcº;1‘kæ    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStartN
categoryId(
lineNumber>severitycharEndTsourceIdJDTcº;1’kç    messageKThe method getJobKey() from the type IJob refers to the missing type JobKeyidx    arguments*4:frame.schedule.IJob#getJobKey#   #JobKey    charStartb
categoryId2
lineNumber>severitycharEndksourceIdJDTcº;1’kè    message&JobDetail cannot be resolved to a typeid    arguments 1:JobDetail    charStartu
categoryId(
lineNumber?severitycharEnd~sourceIdJDTcº;1’ké    messageJobBuilder cannot be resolvedid"2    arguments 1:JobBuilder    charStart‹
categoryId2
lineNumber?severitycharEnd•sourceIdJDTcº;1’kê    message'JobDataMap cannot be resolved to a typeid    arguments 1:JobDataMap    charStartÛ
categoryId(
lineNumberAseveritycharEndåsourceIdJDTcº;1’kë    message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStart>
categoryId(
lineNumberDseveritycharEndHsourceIdJDTcº;1’kì    messageSThe method getTriggerKey() from the type IJob refers to the missing type TriggerKeyidx    arguments24:frame.schedule.IJob#getTriggerKey#   #TriggerKey    charStartZ
categoryId2
lineNumberDseveritycharEndgsourceIdJDTcº;1’kí    message+TriggerBuilder cannot be resolved to a typeid    arguments1:TriggerBuilder    charStartq
categoryId(
lineNumberEseveritycharEndsourceIdJDTcº;1’kî    message$Trigger cannot be resolved to a typeid    arguments    1:Trigger    charStart€
categoryId(
lineNumberEseveritycharEnd‡sourceIdJDTcº;1’kï    message!TriggerBuilder cannot be resolvedid"2    arguments1:TriggerBuilder    charStartš
categoryId2
lineNumberEseveritycharEnd¨sourceIdJDTcº;1’kð    message&CronScheduleBuilder cannot be resolvedid"2    arguments1:CronScheduleBuilder    charStart
categoryId2
lineNumberGseveritycharEndsourceIdJDTcº;1’kñ    message(CronTrigger cannot be resolved to a typeid    arguments 1:CronTrigger    charStart:
categoryId(
lineNumberHseveritycharEndEsourceIdJDTcº;1’kò    message(CronTrigger cannot be resolved to a typeid    arguments 1:CronTrigger    charStartQ
categoryId(
lineNumberHseveritycharEnd\sourceIdJDTcº;1’kó    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart‚
categoryId(
lineNumberJseveritycharEnd‹sourceIdJDTcº;1’kô    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStartª
categoryId(
lineNumberKseveritycharEnd³sourceIdJDTcº;1’kõ    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStart
categoryId(
lineNumberOseveritycharEnd%sourceIdJDTcº;1’kö    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStart+
categoryId(
lineNumberPseveritycharEnd1sourceIdJDTcº;1’k÷    messageKThe method getJobKey() from the type IJob refers to the missing type JobKeyidx    arguments*4:frame.schedule.IJob#getJobKey#   #JobKey    charStart?
categoryId2
lineNumberPseveritycharEndHsourceIdJDTcº;1’kø    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStartW
categoryId(
lineNumberRseveritycharEnd`sourceIdJDTcº;1’kù    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart|
categoryId(
lineNumberSseveritycharEnd…sourceIdJDTcº;1’kú    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStartÂ
categoryId(
lineNumberWseveritycharEndÔsourceIdJDTcº;1’kû    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStartÚ
categoryId(
lineNumberXseveritycharEndãsourceIdJDTcº;1“kü    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStart    
categoryId(
lineNumber[severitycharEnd    #sourceIdJDTcº;1“ký    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart    )
categoryId(
lineNumber\severitycharEnd    2sourceIdJDTcº;1“kþ    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStart    c
categoryId(
lineNumber_severitycharEnd    usourceIdJDTcº;1“kÿ    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart    {
categoryId(
lineNumber`severitycharEnd    „sourceIdJDTcº;1“l    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStart    ¶
categoryId(
lineNumbercseveritycharEnd    ÈsourceIdJDTcº;1“l    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart    Î
categoryId(
lineNumberdseveritycharEnd    ×sourceIdJDTcº;1“l    message/SchedulerException cannot be resolved to a typeid    arguments1:SchedulerException    charStart
 
categoryId(
lineNumbergseveritycharEnd
 sourceIdJDTcº;1“l    message&Scheduler cannot be resolved to a typeid    arguments 1:Scheduler    charStart
&
categoryId(
lineNumberhseveritycharEnd
/sourceIdJDTcº;1“lmessageTODO Auto-generated method stubid Âpriority    charStart
o
lineNumberlcharEnd
Ž userEditablesourceIdJDTcº;1“"/frame/src/frame/schedule/Job.java l    message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStart™
categoryId(
lineNumberseveritycharEnd£sourceIdJDTcº;1˜l        message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStartE
categoryId(
lineNumberseveritycharEndKsourceIdJDTcº;1˜l
    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStartR
categoryId(
lineNumberseveritycharEndXsourceIdJDTcº;1˜l     message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStarth
categoryId(
lineNumberseveritycharEndrsourceIdJDTcº;1˜l     message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStarty
categoryId(
lineNumberseveritycharEndƒsourceIdJDTcº;1˜l     message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStart
categoryId(
lineNumber?severitycharEndsourceIdJDTcº;1˜l    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStart5
categoryId(
lineNumber@severitycharEnd;sourceIdJDTcº;1˜l    message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStartL
categoryId(
lineNumberCseveritycharEndVsourceIdJDTcº;1˜l    message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStarts
categoryId(
lineNumberDseveritycharEnd}sourceIdJDTcº;1˜l    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartC
categoryId
lineNumberseveritycharEndMsourceIdJDTcº;1˜l    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart^
categoryId
lineNumberseveritycharEndhsourceIdJDTcº;1˜l    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStart~
categoryId(
lineNumberseveritycharEnd„sourceIdJDTcº;1˜#/frame/src/frame/schedule/IJob.javal    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStart<
categoryId
lineNumberseveritycharEndFsourceIdJDTcº;1šl    message(The import org.quartz cannot be resolvedid†    arguments 1:org.quartz    charStartW
categoryId
lineNumberseveritycharEndasourceIdJDTcº;1šl    message#JobKey cannot be resolved to a typeid    arguments1:JobKey    charStarts
categoryId(
lineNumberseveritycharEndysourceIdJDTcº;1šl    message'TriggerKey cannot be resolved to a typeid    arguments 1:TriggerKey    charStartŒ
categoryId(
lineNumber!severitycharEnd–sourceIdJDTcº;1š$/frame/src/frame/role/UserRight.javalmessageTODO Auto-generated method stubid Âpriority    charStartÔ
lineNumber    charEndó userEditablesourceIdJDTcº;1©lmessageTODO Auto-generated method stubid Âpriority    charStart@
lineNumbercharEnd_ userEditablesourceIdJDTcº;1ª/frame/src/frame/role/User.javao]message TODO  sendsmsid Âpriority    charStart
    
lineNumberacharEnd
sourceIdJDT userEditablecºèñ©#/frame/src/frame/role/Scenario.javal    message)ActivePeriod cannot be resolved to a typeid    arguments1:ActivePeriod    charStart`
categoryId(
lineNumber"severitycharEndlsourceIdJDTcº;1Ãl    message)ActivePeriod cannot be resolved to a typeid    arguments1:ActivePeriod    charStart“
categoryId(
lineNumber    severitycharEndŸsourceIdJDTcº;1Ãl    message)ActivePeriod cannot be resolved to a typeid    arguments1:ActivePeriod    charStarto
categoryId(
lineNumberseveritycharEnd{sourceIdJDTcº;1Ãl    message)ActivePeriod cannot be resolved to a typeid    arguments1:ActivePeriod    charStart
categoryId(
lineNumberseveritycharEnd sourceIdJDTcº;1Ãl    message)ActivePeriod cannot be resolved to a typeid    arguments1:ActivePeriod    charStart5
categoryId(
lineNumber!severitycharEndAsourceIdJDTcº;1Ã%/frame/src/frame/role/OnlineUser.javal     message+FileProgressor cannot be resolved to a typeid    arguments1:FileProgressor    charStartÂ
categoryId(
lineNumberúseveritycharEndÐsourceIdJDTcº;1Øl!    message,FileLockManager cannot be resolved to a typeid    arguments1:FileLockManager    charStartú
categoryId(
lineNumberûseveritycharEnd    sourceIdJDTcº;1Øl"    message%FileLock cannot be resolved to a typeid    arguments
1:FileLock    charStart0
categoryId(
lineNumberþseveritycharEnd8sourceIdJDTcº;1Øl#    message,FileLockManager cannot be resolved to a typeid    arguments1:FileLockManager    charStart^
categoryId(
lineNumberÿseveritycharEndmsourceIdJDTcº;1Øl$messageTODO Auto-generated method stubid Âpriority    charStartL
lineNumber charEndk userEditablesourceIdJDTcº;1Øl    message,FileLockManager cannot be resolved to a typeid    arguments1:FileLockManager    charStartÁ
categoryId(
lineNumber%severitycharEndÐsourceIdJDTcº;1Øl    message,FileLockManager cannot be resolved to a typeid    arguments1:FileLockManager    charStart]
categoryId(
lineNumber+severitycharEndlsourceIdJDTcº;1Øl    message,FileLockManager cannot be resolved to a typeid    arguments1:FileLockManager    charStarts
categoryId(
lineNumber+severitycharEnd‚sourceIdJDTcº;1Ø0/frame/src/frame/persist/loader/ValueLoader.javal(    messagebThe method toDate(Object, Date) in the type Convertor is not applicable for the arguments (Object)ids    argumentsW4:frame.data.convert.Convertor#toDate#java.lang.Object, java.util.Date#java.lang.Object    charStart$
categoryId2
lineNumber'severitycharEnd*sourceIdJDTcº;1Úl%    messagefCannot make a static reference to the non-static method toInteger(Object, int) from the type Convertorid$É    arguments>3:frame.data.convert.Convertor#toInteger#java.lang.Object, int    charStartú
categoryId2
lineNumberseveritycharEndsourceIdJDTcº;1Úl&    message`Cannot make a static reference to the non-static method toString(Object) from the type Convertorid$É    arguments83:frame.data.convert.Convertor#toString#java.lang.Object    charStart[
categoryId2
lineNumberseveritycharEndusourceIdJDTcº;1Úl'    messagenThe method toBigDecimal(Object, BigDecimal) in the type Convertor is not applicable for the arguments (Object)ids    argumentsc4:frame.data.convert.Convertor#toBigDecimal#java.lang.Object, java.math.BigDecimal#java.lang.Object    charStartÈ
categoryId2
lineNumber#severitycharEndÔsourceIdJDTcº;1Ú(/frame/src/frame/persist/SQLCreator.javal)messageTODO Auto-generated method stubid Âpriority    charStart
lineNumberKcharEnd4 userEditablesourceIdJDTcº;2%l*messageTODO Auto-generated method stubid Âpriority    charStart
lineNumberPcharEnd¯ userEditablesourceIdJDTcº;2&&/frame/src/frame/persist/NamedSQL.javal+    message"SystemCondition cannot be resolvedid"2    arguments1:SystemCondition    charStart    Ô
categoryId2
lineNumberTseveritycharEnd    ãsourceIdJDTcº;2/l,messageTODO Auto-generated method stubid Âpriority    charStart#h
lineNumberhcharEnd#‡ userEditablesourceIdJDTcº;2/l-messageTODO Auto-generated method stubid Âpriority    charStart#Ð
lineNumbermcharEnd#ï userEditablesourceIdJDTcº;2/l.messageTODO Auto-generated method stubid Âpriority    charStart$'
lineNumberrcharEnd$F userEditablesourceIdJDTcº;2/l/messageTODO Auto-generated method stubid Âpriority    charStart$™
lineNumberxcharEnd$¸ userEditablesourceIdJDTcº;2/l0messageTODO Auto-generated method stubid Âpriority    charStart%
lineNumber~charEnd%- userEditablesourceIdJDTcº;2/l1messageTODO Auto-generated method stubid Âpriority    charStart%
lineNumber„charEnd%® userEditablesourceIdJDTcº;2///frame/src/frame/persist/ConnectionManager.javal2    message$ScenarioContainer cannot be resolvedid"2    arguments1:ScenarioContainer    charStart3
categoryId2
lineNumber#severitycharEndDsourceIdJDTcº;2;,/frame/src/frame/object/http/ResultPool.javal3messageTODO Auto-generated method stubid Âpriority    charStart Š
lineNumber’charEnd © userEditablesourceIdJDTcº;2?6/frame/src/frame/object/data/InitializerContainer.javal4messageTODO Auto-generated method stubid Âpriority    charStart}
lineNumbercharEndœ userEditablesourceIdJDTcº;2O-/frame/src/frame/object/data/Initializer.javal5    messageentityMeta cannot be resolvedid"2    arguments 1:entityMeta    charStart„
categoryId2
lineNumberseveritycharEndŽsourceIdJDTcº;2Ol6    message)EntityConfig cannot be resolved to a typeid    arguments1:EntityConfig    charStart
categoryId(
lineNumberseveritycharEnd©sourceIdJDTcº;2Ol7    message"configContainer cannot be resolvedid"2    arguments1:configContainer    charStart¹
categoryId2
lineNumberseveritycharEndÈsourceIdJDTcº;2Ol8    messageDThe method set(String, String) is undefined for the type Initializeridd    argumentsF3:frame.object.data.Initializer#set#java.lang.String, java.lang.String    charStart
categoryId2
lineNumberseveritycharEndsourceIdJDTcº;2Pl9    message(FieldConfig cannot be resolved to a typeid    arguments 1:FieldConfig    charStart=
categoryId(
lineNumberseveritycharEndHsourceIdJDTcº;2Pl:    messageentityMeta cannot be resolvedid"2    arguments 1:entityMeta    charStart
categoryId2
lineNumberseveritycharEnd§sourceIdJDTcº;2Pl;    messageDThe method set(String, Object) is undefined for the type Initializeridd    argumentsF3:frame.object.data.Initializer#set#java.lang.String, java.lang.Object    charStart    
categoryId2
lineNumberseveritycharEnd sourceIdJDTcº;2Pl<messageTODO Auto-generated method stubid Âpriority    charStartõ
lineNumber
charEnd userEditablesourceIdJDTcº;2P,/frame/src/frame/object/data/DataObject.javaoZmessageTODO Auto-generated method stubid Âpriority    charStart'
lineNumberÂcharEndFsourceIdJDT userEditablecºèñ o[messageTODO Auto-generated method stubid Âpriority    charStartœ
lineNumberÈcharEnd»sourceIdJDT userEditablecºèñ o\messageTODO Auto-generated method stubid Âpriority    charStart
lineNumberÎcharEnd0sourceIdJDT userEditablecºèñ -/frame/src/frame/file/office/IOProcessor.javal@    message8The import frame.expression.VariantContext is never usedid„    arguments!1:frame.expression.VariantContext    charStart\
categoryIdx
lineNumberseveritycharEnd{sourceIdJDTcº;2c6/frame/src/frame/file/office/IOMappingItemRuntime.javalA    message@The import org.apache.poi.ss.format.CellFormatType is never usedid„    arguments)1:org.apache.poi.ss.format.CellFormatType    charStart%
categoryIdx
lineNumberseveritycharEndLsourceIdJDTcº;2hlB    messageUThe import com.alibaba.druid.sql.ast.statement.SQLCommentStatement.Type is never usedid„    arguments>1:com.alibaba.druid.sql.ast.statement.SQLCommentStatement.Type    charStartX
categoryIdx
lineNumberseveritycharEnd”sourceIdJDTcº;2hlC    message3The import frame.data.meta.EntityMeta is never usedid„    arguments1:frame.data.meta.EntityMeta    charStart½
categoryIdx
lineNumberseveritycharEnd×sourceIdJDTcº;2h//frame/src/frame/file/office/IOMappingItem.javamÊ    id„message@The import org.apache.poi.ss.format.CellFormatType is never used    arguments)1:org.apache.poi.ss.format.CellFormatType
categoryIdx    charStart\
lineNumberseveritycharEndƒsourceIdJDTcºÝ%ymË    id$vmessageTThe method parseExportType(String) from the type IOMappingItem is never used locally    argumentsB3:frame.file.office.IOMappingItem#parseExportType#java.lang.String
categoryIdx    charStart˜
lineNumberseveritycharEndºsourceIdJDTcºÝ%zmÌmessageTODO Auto-generated method stubid Âpriority    charStartT
lineNumbercharEndssourceIdJDT userEditablecºÝ%zmÍmessageTODO   parseExportTypeid Âpriority    charStartÂ
lineNumbercharEndØsourceIdJDT userEditablecºÝ%z+/frame/src/frame/file/office/IOMapping.javalG    messageEThe import com.sun.org.apache.regexp.internal.recompile is never usedid„    arguments.1:com.sun.org.apache.regexp.internal.recompile    charStartŽ
categoryIdx
lineNumberseveritycharEndºsourceIdJDTcº;2plHmessageTODO Auto-generated method stubid Âpriority    charStart½
lineNumber%charEndÜ userEditablesourceIdJDTcº;2p+/frame/src/frame/file/office/IOHandler.javalI    message8The import frame.expression.VariantContext is never usedid„    arguments!1:frame.expression.VariantContext    charStart@
categoryIdx
lineNumberseveritycharEnd_sourceIdJDTcº;2s./frame/src/frame/file/office/ExcelHandler.javadlJ    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStartL
categoryId(
lineNumberseveritycharEndYsourceIdJDTcº;2£lK    message*OpenXmlReader cannot be resolved to a typeid    arguments1:OpenXmlReader    charStartq
categoryId(
lineNumberseveritycharEnd~sourceIdJDTcº;2£lL    message)ColumnReader cannot be resolved to a typeid    arguments1:ColumnReader    charStart–
categoryId(
lineNumberseveritycharEnd¢sourceIdJDTcº;2£lM    message0SpreadsheetDocument cannot be resolved to a typeid    arguments1:SpreadsheetDocument    charStartÂ
categoryId(
lineNumberseveritycharEndÕsourceIdJDTcº;2£lN    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStartô
categoryId(
lineNumberseveritycharEndsourceIdJDTcº;2£lO    message#Sheets cannot be resolved to a typeid    arguments1:Sheets    charStartŸ
categoryId(
lineNumberseveritycharEnd¥sourceIdJDTcº;2£lP    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStart3
categoryId(
lineNumber#severitycharEndHsourceIdJDTcº;2£lQ    message)ColumnReader cannot be resolved to a typeid    arguments1:ColumnReader    charStarti
categoryId(
lineNumber-severitycharEndusourceIdJDTcº;2£lR    message)ColumnReader cannot be resolved to a typeid    arguments1:ColumnReader    charStart|
categoryId(
lineNumber-severitycharEndˆsourceIdJDTcº;2£lS    message0SpreadsheetDocument cannot be resolved to a typeid    arguments1:SpreadsheetDocument    charStartG
categoryId(
lineNumber5severitycharEndTsourceIdJDTcº;2£lT    message&SpreadsheetDocument cannot be resolvedid"2    arguments1:SpreadsheetDocument    charStartW
categoryId2
lineNumber5severitycharEndjsourceIdJDTcº;2£lU    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStart™
categoryId(
lineNumber7severitycharEnd¥sourceIdJDTcº;2£lV    message0SpreadsheetDocument cannot be resolved to a typeid    arguments1:SpreadsheetDocument    charStart¨
categoryId(
lineNumber7severitycharEndµsourceIdJDTcº;2£lW    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStart
categoryId(
lineNumber:severitycharEndsourceIdJDTcº;2£lX    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStart 
categoryId(
lineNumberBseveritycharEnd,sourceIdJDTcº;2£lY    message?Syntax error on token "(", Expression expected after this tokenid`ç    arguments2:(#Expression    charStart    C
categoryId
lineNumberHseveritycharEnd    DsourceIdJDTcº;2£lZ    message*WorksheetPart cannot be resolved to a typeid    arguments1:WorksheetPart    charStart
Õ
categoryId(
lineNumber[severitycharEnd
âsourceIdJDTcº;2£l[    message*WorksheetPart cannot be resolved to a typeid    arguments1:WorksheetPart    charStart
ö
categoryId(
lineNumber[severitycharEnd sourceIdJDTcº;2£l\    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStart 
categoryId(
lineNumber[severitycharEnd sourceIdJDTcº;2£l]    message"sheet cannot be resolved to a typeid    arguments1:sheet    charStart 
categoryId(
lineNumber[severitycharEnd "sourceIdJDTcº;2¤l^    message:Syntax error on token ".", class expected after this tokenid`ç    arguments    2:.#class    charStart "
categoryId
lineNumber[severitycharEnd #sourceIdJDTcº;2¤l_    message)WorkbookPart cannot be resolved to a typeid    arguments1:WorkbookPart    charStart J
categoryId(
lineNumber\severitycharEnd VsourceIdJDTcº;2¤l`    message*WorksheetPart cannot be resolved to a typeid    arguments1:WorksheetPart    charStart €
categoryId(
lineNumber^severitycharEnd sourceIdJDTcº;2¤la    message?Syntax error on token "(", Expression expected after this tokenid`ç    arguments2:(#Expression    charStart Ä
categoryId
lineNumber^severitycharEnd ÅsourceIdJDTcº;2¤lb    message*WorksheetPart cannot be resolved to a typeid    arguments1:WorksheetPart    charStart®
categoryId(
lineNumber—severitycharEnd»sourceIdJDTcº;2¤lc    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStartë
categoryId(
lineNumber˜severitycharEndñsourceIdJDTcº;2¤ld    message&SheetData cannot be resolved to a typeid    arguments 1:SheetData    charStart
categoryId(
lineNumber˜severitycharEndsourceIdJDTcº;2¤le    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStart'
categoryId(
lineNumberªseveritycharEnd-sourceIdJDTcº;2¤lf    message*WorksheetPart cannot be resolved to a typeid    arguments1:WorksheetPart    charStartu
categoryId(
lineNumber®severitycharEnd‚sourceIdJDTcº;2¤lg    message(IEnumerable cannot be resolved to a typeid    arguments 1:IEnumerable    charStart
categoryId(
lineNumber¯severitycharEnd¨sourceIdJDTcº;2¤lh    message Row cannot be resolved to a typeid    arguments1:Row    charStart©
categoryId(
lineNumber¯severitycharEnd¬sourceIdJDTcº;2¤li    message?Syntax error on token "(", Expression expected after this tokenid`ç    arguments2:(#Expression    charStartÝ
categoryId
lineNumber¯severitycharEndÞsourceIdJDTcº;2¤lj    message5Syntax error, insert ")" to complete MethodInvocationid`ð    arguments2:)#MethodInvocation    charStart
categoryId
lineNumber²severitycharEndsourceIdJDTcº;2¤lk    message.Syntax error, insert ";" to complete Statementid`ð    arguments 2:;#Statement    charStart
categoryId
lineNumber²severitycharEndsourceIdJDTcº;2¤ll    message&Syntax error on token "in", ( expectedid`Ì    arguments2:in#(    charStart
categoryId
lineNumber²severitycharEndsourceIdJDTcº;2¤lm    message.Syntax error, insert ";" to complete Statementid`ð    arguments 2:;#Statement    charStart
categoryId
lineNumber²severitycharEndsourceIdJDTcº;2¤ln    message!List cannot be resolved to a typeid    arguments1:List    charStart\
categoryId(
lineNumber¿severitycharEnd`sourceIdJDTcº;2¤lo    message#string cannot be resolved to a typeid    arguments1:string    charStarta
categoryId(
lineNumber¿severitycharEndgsourceIdJDTcº;2¤lp    message)ColumnReader cannot be resolved to a typeid    arguments1:ColumnReader    charStartx
categoryId(
lineNumber¿severitycharEnd„sourceIdJDTcº;2¤lq    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStartE
categoryId(
lineNumberÄseveritycharEndOsourceIdJDTcº;2¤lr    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStartV
categoryId(
lineNumberÄseveritycharEndksourceIdJDTcº;2¤ls    message5IOMappingItemRuntimeList cannot be resolved to a typeid    arguments1:IOMappingItemRuntimeList    charStartŒ
categoryId(
lineNumberÆseveritycharEnd¤sourceIdJDTcº;2¥lt    message5Syntax error, insert ")" to complete MethodInvocationid`ð    arguments2:)#MethodInvocation    charStart
categoryId
lineNumberÉseveritycharEndsourceIdJDTcº;2¥lu    message'String cannot be resolved to a variableidS    arguments1:String    charStart
categoryId2
lineNumberÉseveritycharEndsourceIdJDTcº;2¥lv    message.Syntax error, insert ";" to complete Statementid`ð    arguments 2:;#Statement    charStart
categoryId
lineNumberÉseveritycharEndsourceIdJDTcº;2¥lw    message&Syntax error on token "in", ( expectedid`Ì    arguments2:in#(    charStart
categoryId
lineNumberÉseveritycharEndsourceIdJDTcº;2¦lx    message.Syntax error, insert ";" to complete Statementid`ð    arguments 2:;#Statement    charStart%
categoryId
lineNumberÉseveritycharEnd&sourceIdJDTcº;2¦ly    message'column cannot be resolved to a variableidS    arguments1:column    charStartZ
categoryId2
lineNumberÊseveritycharEnd`sourceIdJDTcº;2¦lz    message'column cannot be resolved to a variableidS    arguments1:column    charStart
categoryId2
lineNumberÏseveritycharEnd
sourceIdJDTcº;2¦l{    messageHThe method getFromIndex() is undefined for the type IOMappingItemRuntimeidd    arguments93:frame.file.office.IOMappingItemRuntime#getFromIndex#       charStart1
categoryId2
lineNumberÐseveritycharEnd=sourceIdJDTcº;2¦l|    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStartN
categoryId(
lineNumberÑseveritycharEndXsourceIdJDTcº;2¦l}    messageTranslator cannot be resolvedid"2    arguments 1:Translator    charStart^
categoryId2
lineNumberÑseveritycharEndhsourceIdJDTcº;2¦l~    message#Entity cannot be resolved to a typeid    arguments1:Entity    charStart0
categoryId(
lineNumberÙseveritycharEnd6sourceIdJDTcº;2¦l    message;The method getCurrent() is undefined for the type EntitySetidd    arguments%3:frame.data.EntitySet#getCurrent#       charStartJ
categoryId2
lineNumberÙseveritycharEndTsourceIdJDTcº;2¦l€    message#Entity cannot be resolved to a typeid    arguments1:Entity    charStartñ
categoryId(
lineNumberàseveritycharEnd÷sourceIdJDTcº;2¦l    message Row cannot be resolved to a typeid    arguments1:Row    charStart
categoryId(
lineNumberáseveritycharEndsourceIdJDTcº;2¦l‚    message Row cannot be resolved to a typeid    arguments1:Row    charStart
categoryId(
lineNumberáseveritycharEndsourceIdJDTcº;2¦lƒ    message(UInt32Value cannot be resolved to a typeid    arguments 1:UInt32Value    charStart<
categoryId(
lineNumberâseveritycharEndGsourceIdJDTcº;2¦l„    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStart^
categoryId(
lineNumberäseveritycharEnddsourceIdJDTcº;2¦l…    message+Length cannot be resolved or is not a fieldidF    arguments1:Length    charStart¾
categoryId2
lineNumberæseveritycharEndÄsourceIdJDTcº;2¦l†    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStartÏ
categoryId(
lineNumberðseveritycharEndÙsourceIdJDTcº;2§l‡    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStartR
categoryId(
lineNumberöseveritycharEndXsourceIdJDTcº;2§lˆ    message2IExcelValueTranslator cannot be resolved to a typeid    arguments1:IExcelValueTranslator    charStartÆ
categoryId(
lineNumberüseveritycharEndÛsourceIdJDTcº;2§l‰    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart
categoryId(
lineNumberýseveritycharEndsourceIdJDTcº;2§lŠ    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart
categoryId(
lineNumberýseveritycharEndsourceIdJDTcº;2§l‹    message\The method toCellReference(int) from the type ExcelHandler refers to the missing type stringidx    arguments;4:frame.file.office.ExcelHandler#toCellReference#int#string    charStart6
categoryId2
lineNumberþseveritycharEndEsourceIdJDTcº;2§lŒ    message'DBNull cannot be resolved to a variableidS    arguments1:DBNull    charStart†
categoryId2
lineNumberseveritycharEndŒsourceIdJDTcº;2§l    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStart£
categoryId(
lineNumberseveritycharEnd©sourceIdJDTcº;2§lŽ    message)CellDataType cannot be resolved to a typeid    arguments1:CellDataType    charStarté
categoryId(
lineNumberseveritycharEndõsourceIdJDTcº;2§l    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStartý
categoryId2
lineNumberseveritycharEnd     sourceIdJDTcº;2§l    message$ref cannot be resolved to a variableidS    arguments1:ref    charStart =
categoryId2
lineNumberseveritycharEnd @sourceIdJDTcº;2§l‘    message/Syntax error on token "type", delete this tokenid`è    arguments1:type    charStart A
categoryId
lineNumberseveritycharEnd EsourceIdJDTcº;2§l’    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart ]
categoryId2
lineNumberseveritycharEnd isourceIdJDTcº;2§l“    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart Â
categoryId2
lineNumber severitycharEnd ÎsourceIdJDTcº;2§l”    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart!"
categoryId2
lineNumberseveritycharEnd!.sourceIdJDTcº;2§l•    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart!†
categoryId2
lineNumberseveritycharEnd!’sourceIdJDTcº;2§l–    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart!ë
categoryId2
lineNumberseveritycharEnd!÷sourceIdJDTcº;2§l—    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart"N
categoryId2
lineNumberseveritycharEnd"ZsourceIdJDTcº;2§l˜    message-CellDataType cannot be resolved to a variableidS    arguments1:CellDataType    charStart"­
categoryId2
lineNumberseveritycharEnd"¹sourceIdJDTcº;2§l™    message*OpenXmlWriter cannot be resolved to a typeid    arguments1:OpenXmlWriter    charStart#
categoryId(
lineNumberseveritycharEnd#sourceIdJDTcº;2§lš    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart#R
categoryId(
lineNumber!severitycharEnd#VsourceIdJDTcº;2§l›    message#string cannot be resolved to a typeid    arguments1:string    charStart#]
categoryId(
lineNumber!severitycharEnd#csourceIdJDTcº;2§lœ    message&CellValue cannot be resolved to a typeid    arguments 1:CellValue    charStart#‹
categoryId(
lineNumber"severitycharEnd#”sourceIdJDTcº;2¨l    message'CellValues cannot be resolved to a typeid    arguments 1:CellValues    charStart#Ä
categoryId(
lineNumber#severitycharEnd#ÎsourceIdJDTcº;2¨lž    message+CellValues cannot be resolved to a variableidS    arguments 1:CellValues    charStart#Ð
categoryId2
lineNumber#severitycharEnd#ÚsourceIdJDTcº;2¨lŸ    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart$
categoryId(
lineNumber&severitycharEnd$sourceIdJDTcº;2¨l     message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart$Ê
categoryId(
lineNumber+severitycharEnd$ÎsourceIdJDTcº;2¨l¡    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart%¬
categoryId(
lineNumber0severitycharEnd%°sourceIdJDTcº;2¨l¢    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart&J
categoryId(
lineNumber5severitycharEnd&NsourceIdJDTcº;2¨l£    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart&æ
categoryId(
lineNumber:severitycharEnd&êsourceIdJDTcº;2¨l¤    message!Cell cannot be resolved to a typeid    arguments1:Cell    charStart'§
categoryId(
lineNumber?severitycharEnd'«sourceIdJDTcº;2¨l¥    message0Syntax error on token(s), misplaced construct(s)id`ì    arguments0:    charStart)%
categoryId
lineNumberGseveritycharEnd)-sourceIdJDTcº;2¨l¦    message5Syntax error, insert ")" to complete MethodInvocationid`ð    arguments2:)#MethodInvocation    charStart*½
categoryId
lineNumberPseveritycharEnd*ÍsourceIdJDTcº;2¨l§    message#string cannot be resolved to a typeid    arguments1:string    charStart, 
categoryId(
lineNumber^severitycharEnd,¦sourceIdJDTcº;2¨l¨    message?Syntax error on token "(", Expression expected after this tokenid`ç    arguments2:(#Expression    charStart.²
categoryId
lineNumberrseveritycharEnd.³sourceIdJDTcº;2¨l©    messagegThe method createPercentStyleFormat() from the type ExcelHandler refers to the missing type UInt32Valueidx    argumentsI4:frame.file.office.ExcelHandler#createPercentStyleFormat#   #UInt32Value    charStart1˜
categoryId2
lineNumber“severitycharEnd1°sourceIdJDTcº;2¨lª    message(UInt32Value cannot be resolved to a typeid    arguments 1:UInt32Value    charStart2e
categoryId(
lineNumber›severitycharEnd2psourceIdJDTcº;2¨l«    message(UInt32Value cannot be resolved to a typeid    arguments 1:UInt32Value    charStart3å
categoryId(
lineNumber§severitycharEnd3ðsourceIdJDTcº;2¨l¬    message(UInt32Value cannot be resolved to a typeid    arguments 1:UInt32Value    charStart7a
categoryId(
lineNumberÀseveritycharEnd7lsourceIdJDTcº;2¨l­    message,Syntax error on token "}", delete this tokenid`è    arguments1:}    charStart:ß
categoryId
lineNumberÚseveritycharEnd:àsourceIdJDTcº;2¨(/frame/src/frame/file/office/Engine.javaoP    idSmessage$ior cannot be resolved to a variable    arguments1:ior
categoryId2    charStarto
lineNumber4severitycharEndrsourceIdJDTcºèñ™oQ    id`ðmessage4Syntax error, insert ";" to complete BlockStatements    arguments2:;#BlockStatements
categoryId    charStartr
lineNumber4severitycharEndssourceIdJDTcºèñ™oR    idmessage(ExcelWriter cannot be resolved to a type    arguments 1:ExcelWriter
categoryId(    charStart¦
lineNumber6severitycharEnd±sourceIdJDTcºèñ™oS    idmessage(ExcelWriter cannot be resolved to a type    arguments 1:ExcelWriter
categoryId(    charStartÄ
lineNumber6severitycharEndÏsourceIdJDTcºèñ™oT    idmessage+DownloadResult cannot be resolved to a type    arguments1:DownloadResult
categoryId(    charStart
lineNumber7severitycharEnd sourceIdJDTcºèñ™oU    idmessage(JsonBuilder cannot be resolved to a type    arguments 1:JsonBuilder
categoryId(    charStartã
lineNumber@severitycharEndîsourceIdJDTcºèñ™oV    idmessage(JsonBuilder cannot be resolved to a type    arguments 1:JsonBuilder
categoryId(    charStartú
lineNumber@severitycharEndsourceIdJDTcºèñ™oW    idmessage%FileInfo cannot be resolved to a type    arguments
1:FileInfo
categoryId(    charStart
\
lineNumberSseveritycharEnd
dsourceIdJDTcºèñ™oX    idmessage(ExcelLoader cannot be resolved to a type    arguments 1:ExcelLoader
categoryId(    charStart G
lineNumberZseveritycharEnd [sourceIdJDTcºèñ™oY    idmessage(ExcelLoader cannot be resolved to a type    arguments 1:ExcelLoader
categoryId(    charStart 6
lineNumberlseveritycharEnd JsourceIdJDTcºèñ™oJ    idmessage(ExcelLoader cannot be resolved to a type    arguments 1:ExcelLoader
categoryId(    charStartÈ
lineNumberseveritycharEndÓsourceIdJDTcºèñ™oK    idmessage(ExcelLoader cannot be resolved to a type    arguments 1:ExcelLoader
categoryId(    charStart=
lineNumber severitycharEndHsourceIdJDTcºèñ™oL    idmessage(ExcelLoader cannot be resolved to a type    arguments 1:ExcelLoader
categoryId(    charStartO
lineNumber severitycharEndZsourceIdJDTcºèñ™oM    idmessage Map cannot be resolved to a type    arguments1:Map
categoryId(    charStart¿
lineNumber.severitycharEndÂsourceIdJDTcºèñ™oN    idSmessage$orb cannot be resolved to a variable    arguments1:orb
categoryId2    charStartd
lineNumber4severitycharEndgsourceIdJDTcºèñ™oO    idSmessage%scid cannot be resolved to a variable    arguments1:scid
categoryId2    charStarti
lineNumber4severitycharEndmsourceIdJDTcºèñ™9/frame/src/frame/file/exception/FileInvalidException.javal¾    messageoThe serializable class FileInvalidException does not declare a static final serialVersionUID field of type longid `    arguments1:FileInvalidException    charStart.
categoryIdZ
lineNumberseveritycharEndBsourceIdJDTcº;2«9/frame/src/frame/file/exception/DataInvalidException.javal¿    messageoThe serializable class DataInvalidException does not declare a static final serialVersionUID field of type longid `    arguments1:DataInvalidException    charStart.
categoryIdZ
lineNumberseveritycharEndBsourceIdJDTcº;2¬'/frame/src/frame/file/UploadResult.javao%    id"Mmessage:The value of the field UploadResult.showDetail is not used    arguments$2:frame.file.UploadResult#showDetail
categoryIdx    charStartÔ
lineNumberseveritycharEndÞsourceIdJDTcºèñr%/frame/src/frame/file/FileIOItem.javalÂmessage    TODO loadid Âpriority    charStart´
lineNumber8charEnd½ userEditablesourceIdJDTcº;2µlÃmessage    TODO loadid Âpriority    charStart´
lineNumber8charEnd½ userEditablesourceIdJDTcº;2µlÁ    message8The import frame.expression.VariantContext is never usedid„    arguments!1:frame.expression.VariantContext    charStartw
categoryIdx
lineNumberseveritycharEnd–sourceIdJDTcº;2µ(/frame/src/frame/file/FileIOContext.javalÄmessageTODO   INSERT  UPDATE ??id Âpriority    charStart æ
lineNumberscharEnd þ userEditablesourceIdJDTcº;2Ë./frame/src/frame/data/reader/ObjectReader.javalР   messageIThe method getJSONString(Object) is undefined for the type PropertyReaderidd    argumentsA3:frame.data.reader.PropertyReader#getJSONString#java.lang.Object    charStart
categoryId2
lineNumber7severitycharEnd+sourceIdJDTcº;2ðlÑ    messageHThe method getSQLString(Object) is undefined for the type PropertyReaderidd    arguments@3:frame.data.reader.PropertyReader#getSQLString#java.lang.Object    charStart G
categoryId2
lineNumberNseveritycharEnd SsourceIdJDTcº;2ðlÒ    messageHThe method getSQLString(Object) is undefined for the type PropertyReaderidd    arguments@3:frame.data.reader.PropertyReader#getSQLString#java.lang.Object    charStart!M
categoryId2
lineNumberTseveritycharEnd!YsourceIdJDTcº;2ðlÓ    messageFThe method getInteger(Entity) is undefined for the type PropertyReaderidd    arguments?3:frame.data.reader.PropertyReader#getInteger#frame.data.Entity    charStart#w
categoryId2
lineNumbergseveritycharEnd#sourceIdJDTcº;2ðlÔ    messageEThe method getDouble(Entity) is undefined for the type PropertyReaderidd    arguments>3:frame.data.reader.PropertyReader#getDouble#frame.data.Entity    charStart%'
categoryId2
lineNumbervseveritycharEnd%0sourceIdJDTcº;2ðlÕ    messageFThe method getBoolean(Entity) is undefined for the type PropertyReaderidd    arguments?3:frame.data.reader.PropertyReader#getBoolean#frame.data.Entity    charStart&Ù
categoryId2
lineNumber…severitycharEnd&ãsourceIdJDTcº;2ðlÖ    messageCThe method getDate(Entity) is undefined for the type PropertyReaderidd    arguments<3:frame.data.reader.PropertyReader#getDate#frame.data.Entity    charStart(ƒ
categoryId2
lineNumber”severitycharEnd(ŠsourceIdJDTcº;2ðl×    messageIThe method loadToVariant(String) is undefined for the type PropertyReaderidd    argumentsA3:frame.data.reader.PropertyReader#loadToVariant#java.lang.String    charStart*>
categoryId2
lineNumber£severitycharEnd*KsourceIdJDTcº;2ñlØ    message-PropertyIterator cannot be resolved to a typeid    arguments1:PropertyIterator    charStart*ì
categoryId(
lineNumber¬severitycharEnd*üsourceIdJDTcº;2ñlÅ    messageIThe method getJSONString(Object) is undefined for the type PropertyReaderidd    argumentsA3:frame.data.reader.PropertyReader#getJSONString#java.lang.Object    charStart F
categoryId2
lineNumbermseveritycharEnd SsourceIdJDTcº;2ðlÆ    messageIThe method getJSONString(Object) is undefined for the type PropertyReaderidd    argumentsA3:frame.data.reader.PropertyReader#getJSONString#java.lang.Object    charStart 
categoryId2
lineNumber€severitycharEnd *sourceIdJDTcº;2ðlÇ    messageKThe method setData(Object, Object) is undefined for the type PropertyReaderidd    argumentsM3:frame.data.reader.PropertyReader#setData#java.lang.Object, java.lang.Object    charStart”
categoryId2
lineNumberÃseveritycharEnd›sourceIdJDTcº;2ðlÈ    messageKThe method setData(Object, Object) is undefined for the type PropertyReaderidd    argumentsM3:frame.data.reader.PropertyReader#setData#java.lang.Object, java.lang.Object    charStartt
categoryId2
lineNumberÉseveritycharEnd{sourceIdJDTcº;2ðlÉ    messageQThe method setDataString(Object, String) is undefined for the type PropertyReaderidd    argumentsS3:frame.data.reader.PropertyReader#setDataString#java.lang.Object, java.lang.String    charStart
categoryId2
lineNumberÙseveritycharEndsourceIdJDTcº;2ðlÊ    messageQThe method setDataString(Object, String) is undefined for the type PropertyReaderidd    argumentsS3:frame.data.reader.PropertyReader#setDataString#java.lang.Object, java.lang.String    charStartú
categoryId2
lineNumberßseveritycharEndsourceIdJDTcº;2ðlË    messageEThe method getObject(Object) is undefined for the type PropertyReaderidd    arguments=3:frame.data.reader.PropertyReader#getObject#java.lang.Object    charStartY
categoryId2
lineNumberïseveritycharEndbsourceIdJDTcº;2ðlÌ    messageEThe method getObject(Object) is undefined for the type PropertyReaderidd    arguments=3:frame.data.reader.PropertyReader#getObject#java.lang.Object    charStartW
categoryId2
lineNumberõseveritycharEnd`sourceIdJDTcº;2ðlÍ    messageEThe method getString(Object) is undefined for the type PropertyReaderidd    arguments=3:frame.data.reader.PropertyReader#getString#java.lang.Object    charStart
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;2ðlΠ   messageEThe method getString(Object) is undefined for the type PropertyReaderidd    arguments=3:frame.data.reader.PropertyReader#getString#java.lang.Object    charStart)
categoryId2
lineNumberseveritycharEnd2sourceIdJDTcº;2ðlÏ    messageIThe method getJSONString(Object) is undefined for the type PropertyReaderidd    argumentsA3:frame.data.reader.PropertyReader#getJSONString#java.lang.Object    charStartô
categoryId2
lineNumber,severitycharEndsourceIdJDTcº;2ð8/frame/src/frame/data/reader/ObjectPropertyRecorder.javalÙ    messageJThe constructor PropertyReader(String, Class<capture#2-of ?>) is undefinedid‚    argumentsU2:frame.data.reader.PropertyReader#java.lang.String, java.lang.Class<capture##2-of ?>    charStart¤
categoryId2
lineNumber)severitycharEndÈsourceIdJDTcº;2òlÚ    messageHThe method setGetMethod(Method) is undefined for the type PropertyReaderidd    argumentsH3:frame.data.reader.PropertyReader#setGetMethod#java.lang.reflect.Method    charStartI
categoryId2
lineNumber/severitycharEndUsourceIdJDTcº;2òlÛ    messageJThe constructor PropertyReader(String, Class<capture#5-of ?>) is undefinedid‚    argumentsU2:frame.data.reader.PropertyReader#java.lang.String, java.lang.Class<capture##5-of ?>    charStart:
categoryId2
lineNumberBseveritycharEnd]sourceIdJDTcº;2òlÜ    messageHThe method setSetMethod(Method) is undefined for the type PropertyReaderidd    argumentsH3:frame.data.reader.PropertyReader#setSetMethod#java.lang.reflect.Method    charStartÞ
categoryId2
lineNumberHseveritycharEndêsourceIdJDTcº;2ò*/frame/src/frame/data/meta/EntityMeta.javalÝmessageTODO Auto-generated method stubid Âpriority    charStart"D
lineNumberœcharEnd"c userEditablesourceIdJDTcº;3lÞmessageTODO Auto-generated method stubid Âpriority    charStart"D
lineNumberœcharEnd"c userEditablesourceIdJDTcº;33/frame/src/frame/data/convert/StringTranslator.java    là    messagegThe type StringTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    argumentsb4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.StringTranslator    charStartÆ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3!lá    messagekThe type StringTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsf4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.StringTranslator    charStartÆ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3!lâ    messageqThe type StringTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentsv4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.StringTranslator    charStartÆ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3!lã    messageeThe type StringTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsj4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.StringTranslator    charStartÆ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3!lä    messagecThe method toInteger(Object) of type StringTranslator must override or implement a supertype methodidz    arguments@3:toInteger#java.lang.Object#frame.data.convert.StringTranslator    charStart1
categoryId2
lineNumberGseveritycharEndZsourceIdJDTcº;3!lå    messagefThe method toBigDecimal(Object) of type StringTranslator must override or implement a supertype methodidz    argumentsC3:toBigDecimal#java.lang.Object#frame.data.convert.StringTranslator    charStart—
categoryId2
lineNumberYseveritycharEndÃsourceIdJDTcº;3!læ    messagecThe method toBoolean(Object) of type StringTranslator must override or implement a supertype methodidz    arguments@3:toBoolean#java.lang.Object#frame.data.convert.StringTranslator    charStartt
categoryId2
lineNumberbseveritycharEndsourceIdJDTcº;3!lç    message`The method toDate(Object) of type StringTranslator must override or implement a supertype methodidz    arguments=3:toDate#java.lang.Object#frame.data.convert.StringTranslator    charStart     
categoryId2
lineNumber}severitycharEnd    FsourceIdJDTcº;3!lß    messagegThe type StringTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    argumentsb4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.StringTranslator    charStartÆ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3!3/frame/src/frame/data/convert/ObjectTranslator.javalømessageTODO Auto-generated method stubid Âpriority    charStart›
lineNumberrcharEndº userEditablesourceIdJDTcº;3WlùmessageTODO Auto-generated method stubid Âpriority    charStart›
lineNumberrcharEndº userEditablesourceIdJDTcº;3WlúmessageTODO Auto-generated method stubid Âpriority    charStart    
lineNumberxcharEnd    > userEditablesourceIdJDTcº;3WlûmessageTODO Auto-generated method stubid Âpriority    charStart    
lineNumberxcharEnd    > userEditablesourceIdJDTcº;3Xlè    messagegThe type ObjectTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    argumentsb4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.ObjectTranslator    charStart„
categoryId2
lineNumber    severitycharEnd”sourceIdJDTcº;3,lé    messagegThe type ObjectTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    argumentsb4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.ObjectTranslator    charStart„
categoryId2
lineNumber    severitycharEnd”sourceIdJDTcº;3Ulê    messageqThe type ObjectTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentsv4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.ObjectTranslator    charStart„
categoryId2
lineNumber    severitycharEnd”sourceIdJDTcº;3Vlë    messageeThe type ObjectTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsj4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.ObjectTranslator    charStart„
categoryId2
lineNumber    severitycharEnd”sourceIdJDTcº;3Wlì    messagefThe method toBigDecimal(Object) of type ObjectTranslator must override or implement a supertype methodidz    argumentsC3:toBigDecimal#java.lang.Object#frame.data.convert.ObjectTranslator    charStartÁ
categoryId2
lineNumber^severitycharEndísourceIdJDTcº;3Wlí    messagecThe method toBoolean(Object) of type ObjectTranslator must override or implement a supertype methodidz    arguments@3:toBoolean#java.lang.Object#frame.data.convert.ObjectTranslator    charStartI
categoryId2
lineNumberdseveritycharEndrsourceIdJDTcº;3Wlî    message`The method toDate(Object) of type ObjectTranslator must override or implement a supertype methodidz    arguments=3:toDate#java.lang.Object#frame.data.convert.ObjectTranslator    charStartl
categoryId2
lineNumberqseveritycharEnd’sourceIdJDTcº;3Wlï    messagecThe method toInteger(Object) of type ObjectTranslator must override or implement a supertype methodidz    arguments@3:toInteger#java.lang.Object#frame.data.convert.ObjectTranslator    charStart    s
categoryId2
lineNumber}severitycharEnd    œsourceIdJDTcº;3WlðmessageTODO Auto-generated method stubid Âpriority    charStartk
lineNumberYcharEndŠ userEditablesourceIdJDTcº;3WlñmessageTODO Auto-generated method stubid Âpriority    charStartk
lineNumberYcharEndŠ userEditablesourceIdJDTcº;3WlòmessageTODO Auto-generated method stubid Âpriority    charStartö
lineNumber_charEnd userEditablesourceIdJDTcº;3WlómessageTODO Auto-generated method stubid Âpriority    charStartö
lineNumber_charEnd userEditablesourceIdJDTcº;3WlômessageTODO Auto-generated method stubid Âpriority    charStart{
lineNumberecharEndš userEditablesourceIdJDTcº;3WlõmessageTODO Auto-generated method stubid Âpriority    charStart{
lineNumberecharEndš userEditablesourceIdJDTcº;3WlömessageTODO Auto-generated method stubid Âpriority    charStart
lineNumberlcharEnd9 userEditablesourceIdJDTcº;3Wl÷messageTODO Auto-generated method stubid Âpriority    charStart
lineNumberlcharEnd9 userEditablesourceIdJDTcº;3W1/frame/src/frame/data/convert/LongTranslator.java m    messagecThe type LongTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsh4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.LongTranslator    charStart’
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;3Ym    messageaThe method toInteger(Object) of type LongTranslator must override or implement a supertype methodidz    arguments>3:toInteger#java.lang.Object#frame.data.convert.LongTranslator    charStart
categoryId2
lineNumber/severitycharEnd/sourceIdJDTcº;3Ym    messagedThe method toBigDecimal(Object) of type LongTranslator must override or implement a supertype methodidz    argumentsA3:toBigDecimal#java.lang.Object#frame.data.convert.LongTranslator    charStart
categoryId2
lineNumber;severitycharEndIsourceIdJDTcº;3Ym    messageaThe method toBoolean(Object) of type LongTranslator must override or implement a supertype methodidz    arguments>3:toBoolean#java.lang.Object#frame.data.convert.LongTranslator    charStart¥
categoryId2
lineNumberAseveritycharEndÎsourceIdJDTcº;3Ym    message^The method toDate(Object) of type LongTranslator must override or implement a supertype methodidz    arguments;3:toDate#java.lang.Object#frame.data.convert.LongTranslator    charStart'
categoryId2
lineNumberGseveritycharEndMsourceIdJDTcº;3Ymmessage TODO nothingid Âpriority    charStartu
lineNumbercharEnd userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart
lineNumber charEnd& userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart
lineNumber charEnd& userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart
lineNumbercharEnd® userEditablesourceIdJDTcº;3Ym    messageTODO Auto-generated method stubid Âpriority    charStart
lineNumbercharEnd® userEditablesourceIdJDTcº;3Ym
messageTODO Auto-generated method stubid Âpriority    charStart
lineNumbercharEnd$ userEditablesourceIdJDTcº;3Ym messageTODO Auto-generated method stubid Âpriority    charStart
lineNumbercharEnd$ userEditablesourceIdJDTcº;3Ym messageTODO Auto-generated method stubid Âpriority    charStartŠ
lineNumbercharEnd© userEditablesourceIdJDTcº;3Ym messageTODO Auto-generated method stubid Âpriority    charStartŠ
lineNumbercharEnd© userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart-
lineNumber$charEndL userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart-
lineNumber$charEndL userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart³
lineNumber*charEndÒ userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStart³
lineNumber*charEndÒ userEditablesourceIdJDTcº;3YmmessageTODO Auto-generated method stubid Âpriority    charStartÇ
lineNumber6charEndæ userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartÇ
lineNumber6charEndæ userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartR
lineNumber<charEndq userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartR
lineNumber<charEndq userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStart×
lineNumberBcharEndö userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStart×
lineNumberBcharEndö userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartV
lineNumberHcharEndu userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartV
lineNumberHcharEndu userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartÚ
lineNumberNcharEndù userEditablesourceIdJDTcº;3ZmmessageTODO Auto-generated method stubid Âpriority    charStartÚ
lineNumberNcharEndù userEditablesourceIdJDTcº;3Zlü    messageeThe type LongTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    arguments`4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.LongTranslator    charStart’
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;3Xlý    messageeThe type LongTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    arguments`4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.LongTranslator    charStart’
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;3Ylþ    messageiThe type LongTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsd4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.LongTranslator    charStart’
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;3Ylÿ    messageoThe type LongTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentst4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.LongTranslator    charStart’
categoryId2
lineNumber    severitycharEnd sourceIdJDTcº;3Y4/frame/src/frame/data/convert/IntegerTranslator.java    m    messagehThe type IntegerTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    argumentsc4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.IntegerTranslator    charStartâ
categoryId2
lineNumber severitycharEndósourceIdJDTcº;3`m    messagehThe type IntegerTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    argumentsc4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.IntegerTranslator    charStartâ
categoryId2
lineNumber severitycharEndósourceIdJDTcº;3am    messagelThe type IntegerTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsg4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.IntegerTranslator    charStartâ
categoryId2
lineNumber severitycharEndósourceIdJDTcº;3am    messagerThe type IntegerTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentsw4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.IntegerTranslator    charStartâ
categoryId2
lineNumber severitycharEndósourceIdJDTcº;3am     messagefThe type IntegerTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsk4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.IntegerTranslator    charStartâ
categoryId2
lineNumber severitycharEndósourceIdJDTcº;3am!    messagedThe method toInteger(Object) of type IntegerTranslator must override or implement a supertype methodidz    argumentsA3:toInteger#java.lang.Object#frame.data.convert.IntegerTranslator    charStartš
categoryId2
lineNumber:severitycharEndÃsourceIdJDTcº;3am"    messagegThe method toBigDecimal(Object) of type IntegerTranslator must override or implement a supertype methodidz    argumentsD3:toBigDecimal#java.lang.Object#frame.data.convert.IntegerTranslator    charStartá
categoryId2
lineNumberLseveritycharEnd sourceIdJDTcº;3am#    messagedThe method toBoolean(Object) of type IntegerTranslator must override or implement a supertype methodidz    argumentsA3:toBoolean#java.lang.Object#frame.data.convert.IntegerTranslator    charStart§
categoryId2
lineNumberUseveritycharEndÐsourceIdJDTcº;3am$    messageaThe method toDate(Object) of type IntegerTranslator must override or implement a supertype methodidz    arguments>3:toDate#java.lang.Object#frame.data.convert.IntegerTranslator    charStart/
categoryId2
lineNumber[severitycharEndUsourceIdJDTcº;3a3/frame/src/frame/data/convert/DoubleTranslator.java    m(    messageqThe type DoubleTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentsv4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.DoubleTranslator    charStartû
categoryId2
lineNumber severitycharEnd sourceIdJDTcº;3bm)    messageeThe type DoubleTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsj4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.DoubleTranslator    charStartû
categoryId2
lineNumber severitycharEnd sourceIdJDTcº;3bm*    messagecThe method toInteger(Object) of type DoubleTranslator must override or implement a supertype methodidz    arguments@3:toInteger#java.lang.Object#frame.data.convert.DoubleTranslator    charStart´
categoryId2
lineNumber:severitycharEndÝsourceIdJDTcº;3bm+    messagefThe method toBigDecimal(Object) of type DoubleTranslator must override or implement a supertype methodidz    argumentsC3:toBigDecimal#java.lang.Object#frame.data.convert.DoubleTranslator    charStart
categoryId2
lineNumberMseveritycharEnd9sourceIdJDTcº;3bm,    messagecThe method toBoolean(Object) of type DoubleTranslator must override or implement a supertype methodidz    arguments@3:toBoolean#java.lang.Object#frame.data.convert.DoubleTranslator    charStartÒ
categoryId2
lineNumberVseveritycharEndûsourceIdJDTcº;3bm-    message`The method toDate(Object) of type DoubleTranslator must override or implement a supertype methodidz    arguments=3:toDate#java.lang.Object#frame.data.convert.DoubleTranslator    charStartX
categoryId2
lineNumber\severitycharEnd~sourceIdJDTcº;3bm%    messagegThe type DoubleTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    argumentsb4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.DoubleTranslator    charStartû
categoryId2
lineNumber severitycharEnd sourceIdJDTcº;3bm&    messagegThe type DoubleTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    argumentsb4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.DoubleTranslator    charStartû
categoryId2
lineNumber severitycharEnd sourceIdJDTcº;3bm'    messagekThe type DoubleTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsf4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.DoubleTranslator    charStartû
categoryId2
lineNumber severitycharEnd sourceIdJDTcº;3b1/frame/src/frame/data/convert/DateTranslator.java    m.    messageeThe type DateTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    arguments`4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.DateTranslator    charStartÁ
categoryId2
lineNumber severitycharEndÏsourceIdJDTcº;3cm/    messageeThe type DateTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    arguments`4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.DateTranslator    charStartÁ
categoryId2
lineNumber severitycharEndÏsourceIdJDTcº;3dm0    messageiThe type DateTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsd4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.DateTranslator    charStartÁ
categoryId2
lineNumber severitycharEndÏsourceIdJDTcº;3dm1    messageoThe type DateTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentst4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.DateTranslator    charStartÁ
categoryId2
lineNumber severitycharEndÏsourceIdJDTcº;3dm2    messagecThe type DateTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsh4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.DateTranslator    charStartÁ
categoryId2
lineNumber severitycharEndÏsourceIdJDTcº;3dm3    messageaThe method toInteger(Object) of type DateTranslator must override or implement a supertype methodidz    arguments>3:toInteger#java.lang.Object#frame.data.convert.DateTranslator    charStart¸
categoryId2
lineNumberOseveritycharEndásourceIdJDTcº;3dm4    messagedThe method toBigDecimal(Object) of type DateTranslator must override or implement a supertype methodidz    argumentsA3:toBigDecimal#java.lang.Object#frame.data.convert.DateTranslator    charStartò
categoryId2
lineNumberYseveritycharEndsourceIdJDTcº;3dm5    messageaThe method toBoolean(Object) of type DateTranslator must override or implement a supertype methodidz    arguments>3:toBoolean#java.lang.Object#frame.data.convert.DateTranslator    charStart–
categoryId2
lineNumber^severitycharEnd¿sourceIdJDTcº;3dm6    message^The method toDate(Object) of type DateTranslator must override or implement a supertype methodidz    arguments;3:toDate#java.lang.Object#frame.data.convert.DateTranslator    charStart    3
categoryId2
lineNumbercseveritycharEnd    YsourceIdJDTcº;3d4/frame/src/frame/data/convert/BooleanTranslator.javam<    messagedThe method toInteger(Object) of type BooleanTranslator must override or implement a supertype methodidz    argumentsA3:toInteger#java.lang.Object#frame.data.convert.BooleanTranslator    charStart)
categoryId2
lineNumberVseveritycharEndRsourceIdJDTcº;3fm=    messagegThe method toBigDecimal(Object) of type BooleanTranslator must override or implement a supertype methodidz    argumentsD3:toBigDecimal#java.lang.Object#frame.data.convert.BooleanTranslator    charStarti
categoryId2
lineNumber`severitycharEnd•sourceIdJDTcº;3fm7    messagehThe type BooleanTranslator must implement the inherited abstract method Convertor.toInteger(Object, int)id    argumentsc4:toInteger#java.lang.Object, int#frame.data.convert.Convertor#frame.data.convert.BooleanTranslator    charStart¡
categoryId2
lineNumber
severitycharEnd²sourceIdJDTcº;3fm8    messagehThe type BooleanTranslator must implement the inherited abstract method Convertor.toSchemaString(Object)id    argumentsc4:toSchemaString#java.lang.Object#frame.data.convert.Convertor#frame.data.convert.BooleanTranslator    charStart¡
categoryId2
lineNumber
severitycharEnd²sourceIdJDTcº;3fm9    messagelThe type BooleanTranslator must implement the inherited abstract method Convertor.toBoolean(Object, boolean)id    argumentsg4:toBoolean#java.lang.Object, boolean#frame.data.convert.Convertor#frame.data.convert.BooleanTranslator    charStart¡
categoryId2
lineNumber
severitycharEnd²sourceIdJDTcº;3fm:    messagerThe type BooleanTranslator must implement the inherited abstract method Convertor.toBigDecimal(Object, BigDecimal)id    argumentsw4:toBigDecimal#java.lang.Object, java.math.BigDecimal#frame.data.convert.Convertor#frame.data.convert.BooleanTranslator    charStart¡
categoryId2
lineNumber
severitycharEnd²sourceIdJDTcº;3fm;    messagefThe type BooleanTranslator must implement the inherited abstract method Convertor.toDate(Object, Date)id    argumentsk4:toDate#java.lang.Object, java.util.Date#frame.data.convert.Convertor#frame.data.convert.BooleanTranslator    charStart¡
categoryId2
lineNumber
severitycharEnd²sourceIdJDTcº;3f7/frame/src/frame/data/convert/BigDecimalTranslator.javam@messageTODO Auto-generated method stubid Âpriority    charStartë
lineNumberNcharEnd
userEditablesourceIdJDTcº;3gmAmessageTODO Auto-generated method stubid Âpriority    charStartë
lineNumberNcharEnd
userEditablesourceIdJDTcº;3gmBmessageTODO Auto-generated method stubid Âpriority    charStart€
lineNumberTcharEndŸ userEditablesourceIdJDTcº;3gmCmessageTODO Auto-generated method stubid Âpriority    charStart€
lineNumberTcharEndŸ userEditablesourceIdJDTcº;3gmDmessageTODO Auto-generated method stubid Âpriority    charStart
Í
lineNumberzcharEnd
ì userEditablesourceIdJDTcº;3gmEmessageTODO Auto-generated method stubid Âpriority    charStart
Í
lineNumberzcharEnd
ì userEditablesourceIdJDTcº;3gm>messageTODO Auto-generated method stubid Âpriority    charStarto
lineNumber@charEndŽ userEditablesourceIdJDTcº;3gm?messageTODO Auto-generated method stubid Âpriority    charStarto
lineNumber@charEndŽ userEditablesourceIdJDTcº;3g/frame/src/frame/data/Page.javamFmessageTODO Auto-generated method stubid Âpriority    charStart ‰
lineNumberŒcharEnd ¨ userEditablesourceIdJDTcº;3žmGmessageTODO Auto-generated method stubid Âpriority    charStart ‰
lineNumberŒcharEnd ¨ userEditablesourceIdJDTcº;3žmHmessageTODO Auto-generated method stubid Âpriority    charStart þ
lineNumber’charEnd userEditablesourceIdJDTcº;3žmImessageTODO Auto-generated method stubid Âpriority    charStart þ
lineNumber’charEnd userEditablesourceIdJDTcº;3žmJmessageTODO Auto-generated method stubid Âpriority    charStarts
lineNumber˜charEnd’ userEditablesourceIdJDTcº;3žmKmessageTODO Auto-generated method stubid Âpriority    charStarts
lineNumber˜charEnd’ userEditablesourceIdJDTcº;3ž$/frame/src/frame/data/EntitySet.javamMmessageTODO Auto-generated method stubid Âpriority    charStart
 
lineNumberncharEnd
/ userEditablesourceIdJDTcº;3 mLmessageTODO Auto-generated method stubid Âpriority    charStart
 
lineNumberncharEnd
/ userEditablesourceIdJDTcº;3 !/frame/src/frame/data/Entity.javamPmessageTODO Auto-generated method stubid Âpriority    charStart"#
lineNumber3charEnd"B userEditablesourceIdJDTcº;3¡mQmessageTODO Auto-generated method stubid Âpriority    charStart"#
lineNumber3charEnd"B userEditablesourceIdJDTcº;3¡mNmessageTODOid Âpriority    charStartƒ
lineNumberãcharEnd‡ userEditablesourceIdJDTcº;3¡mOmessageTODOid Âpriority    charStartƒ
lineNumberãcharEnd‡ userEditablesourceIdJDTcº;3¡2/frame/src/frame/config/ContextConfigerLoader.java8mR    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStartæ
categoryId(
lineNumberseveritycharEnd÷sourceIdJDTcº;3ÝmS    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStart
categoryId(
lineNumberseveritycharEnd'sourceIdJDTcº;3ÝmT    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart
categoryId(
lineNumber&severitycharEnd.sourceIdJDTcº;3ÝmU    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart?
categoryId(
lineNumber&severitycharEndPsourceIdJDTcº;3ÝmV    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStartX
categoryId(
lineNumber'severitycharEndcsourceIdJDTcº;3ÝmW    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStartt
categoryId(
lineNumber'severitycharEnd‚sourceIdJDTcº;3ÝmX    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart    %
categoryId(
lineNumber]severitycharEnd    6sourceIdJDTcº;3ÝmY    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart    D
categoryId(
lineNumber]severitycharEnd    SsourceIdJDTcº;3ÝmZ    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStart    •
categoryId(
lineNumberbseveritycharEnd    £sourceIdJDTcº;3Ým[    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStart    ´
categoryId(
lineNumberbseveritycharEnd    ¿sourceIdJDTcº;3Ým\    message+Node_Param cannot be resolved to a variableidS    arguments 1:Node_Param    charStart
]
categoryId2
lineNumberhseveritycharEnd
gsourceIdJDTcº;3Ým]    message0Node_Param_Name cannot be resolved to a variableidS    arguments1:Node_Param_Name    charStart
è
categoryId2
lineNumbermseveritycharEnd
÷sourceIdJDTcº;3Ým^    message1Node_Param_Value cannot be resolved to a variableidS    arguments1:Node_Param_Value    charStart $
categoryId2
lineNumbernseveritycharEnd 4sourceIdJDTcº;3Ým_    messageUtil cannot be resolvedid"2    arguments1:Util    charStart L
categoryId2
lineNumberoseveritycharEnd PsourceIdJDTcº;3Ým`    message2Node_Param_Client cannot be resolved to a variableidS    arguments1:Node_Param_Client    charStart x
categoryId2
lineNumberoseveritycharEnd ‰sourceIdJDTcº;3Ýma    message/Node_FreeVisit cannot be resolved to a variableidS    arguments1:Node_FreeVisit    charStart T
categoryId2
lineNumberxseveritycharEnd bsourceIdJDTcº;3Þmb    message*Node_Type cannot be resolved to a variableidS    arguments 1:Node_Type    charStart ñ
categoryId2
lineNumber}severitycharEnd úsourceIdJDTcº;3Þmc    message.Node_Resource cannot be resolved to a variableidS    arguments1:Node_Resource    charStart æ
categoryId2
lineNumber„severitycharEnd ósourceIdJDTcº;3Þmd    message*Node_Call cannot be resolved to a variableidS    arguments 1:Node_Call    charStartï
categoryId2
lineNumber‹severitycharEndøsourceIdJDTcº;3Þme    message-Node_Exclude cannot be resolved to a variableidS    arguments1:Node_Exclude    charStartæ
categoryId2
lineNumber’severitycharEndòsourceIdJDTcº;3Þmf    message2Node_LimitedVisit cannot be resolved to a variableidS    arguments1:Node_LimitedVisit    charStart
categoryId2
lineNumberœseveritycharEnd+sourceIdJDTcº;3Þmg    message2Node_RoleResource cannot be resolved to a variableidS    arguments1:Node_RoleResource    charStartº
categoryId2
lineNumber¡severitycharEndËsourceIdJDTcº;3Þmh    message7Node_RoleResource_Role cannot be resolved to a variableidS    arguments1:Node_RoleResource_Role    charStartS
categoryId2
lineNumber¤severitycharEndisourceIdJDTcº;3Þmi    message;Node_RoleResource_Resource cannot be resolved to a variableidS    arguments1:Node_RoleResource_Resource    charStartš
categoryId2
lineNumber¥severitycharEnd´sourceIdJDTcº;3Þmj    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart7
categoryId(
lineNumber¹severitycharEndHsourceIdJDTcº;3Þmk    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart[
categoryId(
lineNumber¹severitycharEndlsourceIdJDTcº;3Þml    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStartŒ
categoryId(
lineNumberºseveritycharEnd›sourceIdJDTcº;3Þmm    message.Node_Callable cannot be resolved to a variableidS    arguments1:Node_Callable    charStart1
categoryId2
lineNumberÀseveritycharEnd>sourceIdJDTcº;3Þmn    message-Node_Mapping cannot be resolved to a variableidS    arguments1:Node_Mapping    charStartÎ
categoryId2
lineNumberÄseveritycharEndÚsourceIdJDTcº;3Þmo    message2Node_Mapping_Path cannot be resolved to a variableidS    arguments1:Node_Mapping_Path    charStartj
categoryId2
lineNumberÈseveritycharEnd{sourceIdJDTcº;3Þmp    message7Node_Mapping_ClassName cannot be resolved to a variableidS    arguments1:Node_Mapping_ClassName    charStart­
categoryId2
lineNumberÉseveritycharEndÃsourceIdJDTcº;3Þmq    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStartÍ
categoryId(
lineNumberËseveritycharEndÛsourceIdJDTcº;3Þmr    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStartñ
categoryId(
lineNumberËseveritycharEndÿsourceIdJDTcº;3Þms    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStart
categoryId(
lineNumberÌseveritycharEnd"sourceIdJDTcº;3Þmt    message2Node_ConfigLoader cannot be resolved to a variableidS    arguments1:Node_ConfigLoader    charStart¹
categoryId2
lineNumberÒseveritycharEndÊsourceIdJDTcº;3Þmu    message9Node_ConfigLoader_Loader cannot be resolved to a variableidS    arguments1:Node_ConfigLoader_Loader    charStartY
categoryId2
lineNumberÖseveritycharEndqsourceIdJDTcº;3Þmv    message>Node_ConfigLoader_Loader_Name cannot be resolved to a variableidS    arguments1:Node_ConfigLoader_Loader_Name    charStart
categoryId2
lineNumberÛseveritycharEnd sourceIdJDTcº;3ßmw    message@Node_ConfigLoader_Loader_Active cannot be resolved to a variableidS    arguments!1:Node_ConfigLoader_Loader_Active    charStartP
categoryId2
lineNumberÜseveritycharEndosourceIdJDTcº;3ßmx    messageCNode_ConfigLoader_Loader_ClassName cannot be resolved to a variableidS    arguments$1:Node_ConfigLoader_Loader_ClassName    charStart¢
categoryId2
lineNumberÝseveritycharEndÄsourceIdJDTcº;3ßmy    messageUtil cannot be resolvedid"2    arguments1:Util    charStartŽ
categoryId2
lineNumberîseveritycharEnd’sourceIdJDTcº;3ßmz    message0Node_DataFilter cannot be resolved to a variableidS    arguments1:Node_DataFilter    charStart[
categoryId2
lineNumberöseveritycharEndjsourceIdJDTcº;3ßm{    message7Node_DataFilter_Filter cannot be resolved to a variableidS    arguments1:Node_DataFilter_Filter    charStartù
categoryId2
lineNumberúseveritycharEndsourceIdJDTcº;3ßm|    messageANode_DataFilter_Filter_TableName cannot be resolved to a variableidS    arguments"1:Node_DataFilter_Filter_TableName    charStart¦
categoryId2
lineNumberÿseveritycharEndÆsourceIdJDTcº;3ßm}    message=Node_DataFilter_Filter_Where cannot be resolved to a variableidS    arguments1:Node_DataFilter_Filter_Where    charStartõ
categoryId2
lineNumberseveritycharEndsourceIdJDTcº;3ßm~    messageUtil cannot be resolvedid"2    arguments1:Util    charStart™
categoryId2
lineNumberseveritycharEndsourceIdJDTcº;3ßm    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStartÈ
categoryId2
lineNumber severitycharEndÖsourceIdJDTcº;3ßm€    messageUtil cannot be resolvedid"2    arguments1:Util    charStart :
categoryId2
lineNumberseveritycharEnd >sourceIdJDTcº;3ßm    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStart m
categoryId2
lineNumberseveritycharEnd {sourceIdJDTcº;3ßm‚    messageUtil cannot be resolvedid"2    arguments1:Util    charStart ß
categoryId2
lineNumberseveritycharEnd ãsourceIdJDTcº;3ßmƒ    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStart!
categoryId2
lineNumberseveritycharEnd!sourceIdJDTcº;3ßm„    messageUtil cannot be resolvedid"2    arguments1:Util    charStart!
categoryId2
lineNumber severitycharEnd!ƒsourceIdJDTcº;3ßm…    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStart!±
categoryId2
lineNumber$severitycharEnd!¿sourceIdJDTcº;3ßm†    message.VirtualPathConfig cannot be resolved to a typeid    arguments1:VirtualPathConfig    charStart"
 
categoryId(
lineNumber'severitycharEnd"sourceIdJDTcº;3ßm‡    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStart"r
categoryId2
lineNumber,severitycharEnd"€sourceIdJDTcº;3ßmˆ    message+CallableConfig cannot be resolved to a typeid    arguments1:CallableConfig    charStart#
categoryId(
lineNumber/severitycharEnd#sourceIdJDTcº;3ßm‰    message!mainDispatcher cannot be resolvedid"2    arguments1:mainDispatcher    charStart#q
categoryId2
lineNumber4severitycharEnd#sourceIdJDTcº;3ß$/frame/WebRoot/page/file/upload.htmlm”*org.eclipse.wst.html.core.validationMarkermessageUnknown tag (ie).
lineNumberÔseveritycharEndM ValidationId%org.eclipse.wst.html.ui.HTMLValidator    charStartKcº;8õ(/frame/WebRoot/page/file/filerecord.htmlm•%org.eclipse.wst.jsdt.web.core.problemmessageMissing semicolon
lineNumberoseveritycharEnd    ø ValidationId.org.eclipse.wst.jsdt.web.core.JsBatchValidator    charStart    öcº;91m–messageMissing semicolon
lineNumberrseveritycharEnd
; ValidationId.org.eclipse.wst.jsdt.web.core.JsBatchValidator    charStart
9cº;91%/frame/WebRoot/page/file/filelog.htmlm˜messageMissing semicolon
lineNumberrseveritycharEnd
< ValidationId.org.eclipse.wst.jsdt.web.core.JsBatchValidator    charStart
:cº;9um—messageMissing semicolon
lineNumberoseveritycharEnd    ù ValidationId.org.eclipse.wst.jsdt.web.core.JsBatchValidator    charStart    ÷cº;9u/frame/WebRoot/js/tree.jsmš!org.eclipse.wst.jsdt.core.problemmessage"The local variable l is never read
lineNumber4severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;m›messageMissing semicolon
lineNumberSseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;m™message#The local variable me is never read
lineNumber#severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;/frame/WebRoot/js/loading.jsmmessageOType mismatch: cannot convert from ___anonymous1491_1492 to ___anonymous438_439
lineNumberBseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;mœmessage"The local variable n is never read
lineNumber2severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;/frame/WebRoot/js/grid.jsmžmessage(The local variable toolbar is never read
lineNumberõseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;RmŸmessage,The local variable currentPage is never read
lineNumberseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;Rm message*The local variable totalPage is never read
lineNumberseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;Rm¡messageMissing semicolon
lineNumber|severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;Rm¢message8The local variable colspan may not have been initialized
lineNumberãseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;Rm£message8The local variable colspan may not have been initialized
lineNumberäseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;Rm¤message8The local variable pcolumn may not have been initialized
lineNumberäseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;;R/frame/WebRoot/js/control.jsm°messageMissing semicolon
lineNumber@severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m±messageMissing semicolon
lineNumberAseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m²messageMissing semicolon
lineNumberBseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m³messageMissing semicolon
lineNumberPseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m´message7The local variable config may not have been initialized
lineNumberZseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<mµmessage7The local variable config may not have been initialized
lineNumber`severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¥message7The local variable config may not have been initialized
lineNumberfseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¦message7The local variable config may not have been initialized
lineNumberlseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m§message7The local variable config may not have been initialized
lineNumber|severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¨messageMissing semicolon
lineNumber_severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m©messageMissing semicolon
lineNumberseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<mªmessage#The local variable me is never read
lineNumberseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m«message*The local variable name_data is never read
lineNumberªseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¬message*The local variable name_data is never read
lineNumber¯severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m­message#The local variable me is never read
lineNumber
iseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m®message#The local variable me is never read
lineNumber
xseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¯message#The local variable me is never read
lineNumber
©severity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;</frame/WebRoot/js/card.jsm¸message7The local variable editor may not have been initialized
lineNumberÇseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¹messageMissing semicolon
lineNumberéseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m¶message#The local variable me is never read
lineNumberfseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<m·messageMissing semicolon
lineNumberÂseverity ValidationId-org.eclipse.wst.jsdt.web.core.PureJSValidatorcº;<B/frame/.metadata/.plugins/org.eclipse.wst.common.snippets/user.xmlmº)org.eclipse.wst.xml.core.validationMarkermessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=îD/frame/.metadata/.plugins/org.eclipse.wst.common.snippets/hidden.xmlm»messageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=ñB/frame/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xmlm¼messageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=ó@/frame/.metadata/.plugins/org.eclipse.ui.workbench/workbench.xmlm½messageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=öF/frame/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xmlm¾messageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=øF/frame/.metadata/.plugins/org.eclipse.team.cvs.ui/repositoriesView.xmlm¿messageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=úJ/frame/.metadata/.plugins/org.eclipse.team.cvs.ui/commitCommentHistory.xmlmÀmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=ûF/frame/.metadata/.plugins/org.eclipse.team.cvs.ui/commentTemplates.xmlmÁmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=ý_/frame/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.0.0.20110607-2117.xmlmÂmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;=ÿ@/frame/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xmlmÃmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>I/frame/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xmlmÄmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>@/frame/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xmlmÅmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>D/frame/.metadata/.plugins/org.eclipse.jdt.launching/libraryInfos.xmlmÆmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>@/frame/.metadata/.plugins/org.eclipse.jdt.launching/.install.xmlmÇmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>    I/frame/.metadata/.plugins/com.genuitec.eclipse.sqlexplorer/SQLDrivers.xmlmÈmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>Q/frame/.metadata/.plugins/com.genuitec.eclipse.sqlexplorer/ConnectionProfiles.xmlmÉmessageENo grammar constraints (DTD or XML schema) detected for the document.
lineNumberseverity ValidationIdorg.eclipse.wst.xml.core.xmlsquiggleSelectionStrategy columnNumbercº;>