-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgsoc2011_apurv.diff
1647 lines (1647 loc) · 108 KB
/
gsoc2011_apurv.diff
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
Manual/phyloGeoRef.pdf | Bin 0 -> 233949 bytes
README | 78 +-
phyloGeoRef/README | 53 -
phyloGeoRef/build/built-jar.properties | 4 +
phyloGeoRef/build/classes/AddressExample.class | Bin 1784 -> 0 bytes
phyloGeoRef/build/classes/JdbcExample.class | Bin 1525 -> 0 bytes
phyloGeoRef/build/classes/MockColumn.class | Bin 742 -> 0 bytes
phyloGeoRef/build/classes/MockResultSet.class | Bin 25150 -> 0 bytes
.../build/classes/MockResultSetMetaData.class | Bin 4620 -> 0 bytes
.../au/com/bytecode/opencsv/CSVParserTest.class | Bin 5422 -> 0 bytes
.../au/com/bytecode/opencsv/CSVReaderTest.class | Bin 2853 -> 0 bytes
.../au/com/bytecode/opencsv/CSVWriter.class | Bin 5011 -> 4976 bytes
.../au/com/bytecode/opencsv/CSVWriterTest.class | Bin 3407 -> 0 bytes
.../classes/au/com/bytecode/opencsv/MockClob.class | Bin 2015 -> 0 bytes
.../au/com/bytecode/opencsv/MockResultSet.class | Bin 22024 -> 0 bytes
.../com/bytecode/opencsv/MockResultSetHelper.class | Bin 903 -> 0 bytes
.../bytecode/opencsv/MockResultSetMetaData.class | Bin 3271 -> 0 bytes
.../au/com/bytecode/opencsv/OpencsvTest.class | Bin 1306 -> 0 bytes
.../au/com/bytecode/opencsv/ResultSetHelper.class | Bin 368 -> 317 bytes
.../opencsv/ResultSetHelperServiceTest.class | Bin 3443 -> 0 bytes
.../au/com/bytecode/opencsv/UniCodeTest.class | Bin 2350 -> 0 bytes
.../bean/ColumnPositionMappingStrategyTest.class | Bin 1876 -> 0 bytes
.../bytecode/opencsv/bean/CsvToBeanTest$1.class | Bin 1520 -> 0 bytes
.../com/bytecode/opencsv/bean/CsvToBeanTest.class | Bin 1528 -> 0 bytes
.../bean/HeaderColumnNameMappingStrategyTest.class | Bin 2310 -> 0 bytes
...derColumnNameTranslateMappingStrategyTest.class | Bin 941 -> 0 bytes
.../bytecode/opencsv/bean/MappingStrategy.class | Bin 642 -> 575 bytes
.../au/com/bytecode/opencsv/bean/MockBean.class | Bin 1132 -> 0 bytes
.../au/com/bytecode/opencsv/bean/package.html | 12 +
.../classes/au/com/bytecode/opencsv/package.html | 12 +
.../micromata/jak/AtsConformanceLevel1Test.class | Bin 5478 -> 0 bytes
.../micromata/jak/AtsConformanceLevel2Test.class | Bin 3836 -> 0 bytes
.../micromata/jak/AtsConformanceLevel3Test.class | Bin 1857 -> 0 bytes
.../de/micromata/jak/KmlGxReferenceApiTest.class | Bin 2937 -> 0 bytes
.../de/micromata/jak/KmlReferenceApiTest.class | Bin 13045 -> 0 bytes
.../de/micromata/jak/KmlReferenceCheck.class | Bin 12141 -> 0 bytes
.../de/micromata/jak/KmlReferencePojoTest.class | Bin 13049 -> 0 bytes
.../de/micromata/jak/NameSpaceBeautyfier.class | Bin 959 -> 0 bytes
.../de/micromata/jak/StressTest$Statistics.class | Bin 1791 -> 0 bytes
.../classes/de/micromata/jak/StressTest$Time.class | Bin 1067 -> 0 bytes
.../classes/de/micromata/jak/StressTest.class | Bin 6312 -> 0 bytes
.../build/classes/de/micromata/jak/Utils.class | Bin 9402 -> 0 bytes
.../de/micromata/jak/examples/CloneTest.class | Bin 807 -> 0 bytes
.../de/micromata/jak/examples/Example1.class | Bin 4871 -> 0 bytes
.../de/micromata/jak/examples/Example2.class | Bin 7376 -> 0 bytes
.../de/micromata/jak/examples/Example3.class | Bin 5918 -> 0 bytes
.../de/micromata/jak/examples/Example4.class | Bin 7685 -> 0 bytes
.../micromata/jak/examples/ReadCsvFileTest.class | Bin 1276 -> 0 bytes
.../classes/de/micromata/jak/examples/Utils.class | Bin 7933 -> 0 bytes
.../incubator/JAXBSample$DeclareOnTopMapper.class | Bin 739 -> 0 bytes
.../incubator/JAXBSample$PreDeclaredMapper.class | Bin 751 -> 0 bytes
.../jak/incubator/JAXBSample$PreferredMapper.class | Bin 961 -> 0 bytes
.../de/micromata/jak/incubator/JAXBSample.class | Bin 3255 -> 0 bytes
.../de/micromata/jak/incubator/JustAType.class | Bin 501 -> 0 bytes
.../de/micromata/jak/incubator/KmzTest.class | Bin 2868 -> 0 bytes
.../jak/internal/IAtsConformanceLevel1.class | Bin 1641 -> 0 bytes
.../jak/internal/IAtsConformanceLevel2.class | Bin 1099 -> 0 bytes
.../jak/internal/IAtsConformanceLevel3.class | Bin 508 -> 0 bytes
.../de/micromata/jak/internal/IKMLReference.class | Bin 4307 -> 0 bytes
.../micromata/jak/internal/IKmlGxReference.class | Bin 1559 -> 0 bytes
.../build/classes/de/micromata/jak/jugh/Jugh.class | Bin 5097 -> 0 bytes
.../opengis/kml/v_2_2_0/AbstractLatLonBox.class | Bin 8026 -> 0 bytes
.../opengis/kml/v_2_2_0/AbstractObject.class | Bin 5725 -> 0 bytes
.../opengis/kml/v_2_2_0/AbstractView.class | Bin 6391 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Alias.class | Bin 7036 -> 0 bytes
.../opengis/kml/v_2_2_0/AltitudeMode.class | Bin 2261 -> 0 bytes
.../opengis/kml/v_2_2_0/BalloonStyle.class | Bin 10940 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/BasicLink.class | Bin 6800 -> 0 bytes
.../opengis/kml/v_2_2_0/BooleanConverter.class | Bin 1457 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Boundary.class | Bin 5744 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Camera.class | Bin 11438 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Change.class | Bin 3567 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/ColorMode.class | Bin 1895 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/ColorStyle.class | Bin 9761 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Container.class | Bin 15587 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Coordinate.class | Bin 3922 -> 0 bytes
.../opengis/kml/v_2_2_0/CoordinatesConverter.class | Bin 2808 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Create.class | Bin 4036 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Data.class | Bin 6027 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Delete.class | Bin 5657 -> 0 bytes
.../opengis/kml/v_2_2_0/DisplayMode.class | Bin 1909 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Document.class | Bin 25010 -> 0 bytes
.../opengis/kml/v_2_2_0/ExtendedData.class | Bin 6198 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Feature.class | Bin 22672 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Folder.class | Bin 23547 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Geometry.class | Bin 6431 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/GridOrigin.class | Bin 1917 -> 0 bytes
.../opengis/kml/v_2_2_0/GroundOverlay.class | Bin 23662 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Icon.class | Bin 12286 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/IconStyle.class | Bin 14043 -> 0 bytes
.../opengis/kml/v_2_2_0/ImagePyramid.class | Bin 8149 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/ItemIcon.class | Bin 7917 -> 0 bytes
.../opengis/kml/v_2_2_0/ItemIconState.class | Bin 2279 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Kml$1.class | Bin 226 -> 0 bytes
.../kml/v_2_2_0/Kml$NameSpaceBeautyfier.class | Bin 1303 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Kml.class | Bin 17750 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/KmlFactory.class | Bin 24951 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/LabelStyle.class | Bin 11979 -> 0 bytes
.../opengis/kml/v_2_2_0/LatLonAltBox.class | Bin 11168 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/LatLonBox.class | Bin 9939 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/LineString.class | Bin 12177 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/LineStyle.class | Bin 11953 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/LinearRing.class | Bin 12177 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Link.class | Bin 12220 -> 0 bytes
.../opengis/kml/v_2_2_0/ListItemType.class | Bin 2134 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/ListStyle.class | Bin 11482 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Location.class | Bin 7453 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Lod.class | Bin 7771 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/LookAt.class | Bin 11442 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Metadata.class | Bin 3232 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Model.class | Bin 13492 -> 0 bytes
.../opengis/kml/v_2_2_0/MultiGeometry.class | Bin 11157 -> 0 bytes
.../kml/v_2_2_0/NamespaceFilterHandler.class | Bin 2714 -> 0 bytes
.../kml/v_2_2_0/NamespaceFilterXMLReader.class | Bin 3376 -> 0 bytes
.../opengis/kml/v_2_2_0/NetworkLink.class | Bin 18183 -> 0 bytes
.../opengis/kml/v_2_2_0/NetworkLinkControl.class | Bin 11640 -> 0 bytes
.../opengis/kml/v_2_2_0/Orientation.class | Bin 7488 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Overlay.class | Bin 17370 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Pair.class | Bin 8710 -> 0 bytes
.../opengis/kml/v_2_2_0/PhotoOverlay.class | Bin 25327 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/Placemark.class | Bin 17953 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Point.class | Bin 11602 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/PolyStyle.class | Bin 12554 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Polygon.class | Bin 12317 -> 0 bytes
.../opengis/kml/v_2_2_0/RefreshMode.class | Bin 2014 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Region.class | Bin 7926 -> 0 bytes
.../opengis/kml/v_2_2_0/ResourceMap.class | Bin 7643 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Scale.class | Bin 7290 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Schema.class | Bin 5867 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/SchemaData.class | Bin 6923 -> 0 bytes
.../opengis/kml/v_2_2_0/ScreenOverlay.class | Bin 24463 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Shape.class | Bin 1957 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/SimpleData.class | Bin 2759 -> 0 bytes
.../opengis/kml/v_2_2_0/SimpleField.class | Bin 4662 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Snippet.class | Bin 2758 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Style.class | Bin 13816 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/StyleMap.class | Bin 9777 -> 0 bytes
.../opengis/kml/v_2_2_0/StyleSelector.class | Bin 6345 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/StyleState.class | Bin 1909 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/SubStyle.class | Bin 6289 -> 0 bytes
.../opengis/kml/v_2_2_0/TimePrimitive.class | Bin 6349 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/TimeSpan.class | Bin 9244 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/TimeStamp.class | Bin 8887 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Units.class | Bin 1962 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Update.class | Bin 4901 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/Vec2.class | Bin 3698 -> 0 bytes
.../opengis/kml/v_2_2_0/ViewRefreshMode.class | Bin 2122 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/ViewVolume.class | Bin 8211 -> 0 bytes
.../opengis/kml/v_2_2_0/annotations/Obvious.class | Bin 315 -> 0 bytes
.../opengis/kml/v_2_2_0/atom/Author.class | Bin 3175 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/atom/Link.class | Bin 4336 -> 0 bytes
.../opengis/kml/v_2_2_0/atom/package-info.class | Bin 350 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/AnimatedUpdate.class | Bin 4958 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/gx/FlyTo.class | Bin 5781 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/FlyToMode.class | Bin 1913 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/LatLonQuad.class | Bin 5938 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/PlayMode.class | Bin 1819 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/Playlist.class | Bin 6728 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/SoundCue.class | Bin 3604 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/gx/Tour.class | Bin 11562 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/TourControl.class | Bin 3870 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/TourPrimitive.class | Bin 1453 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/gx/Wait.class | Bin 3562 -> 0 bytes
.../opengis/kml/v_2_2_0/gx/package-info.class | Bin 354 -> 0 bytes
.../opengis/kml/v_2_2_0/package-info.class | Bin 348 -> 0 bytes
.../kml/v_2_2_0/xal/AddressDetails$Address.class | Bin 3808 -> 0 bytes
.../AddressDetails$Country$CountryNameCode.class | Bin 3949 -> 0 bytes
.../kml/v_2_2_0/xal/AddressDetails$Country.class | Bin 13273 -> 0 bytes
...s$PostalServiceElements$AddressIdentifier.class | Bin 4502 -> 0 bytes
...ils$PostalServiceElements$AddressLatitude.class | Bin 4047 -> 0 bytes
...lServiceElements$AddressLatitudeDirection.class | Bin 4092 -> 0 bytes
...ls$PostalServiceElements$AddressLongitude.class | Bin 4052 -> 0 bytes
...ServiceElements$AddressLongitudeDirection.class | Bin 4097 -> 0 bytes
...ressDetails$PostalServiceElements$Barcode.class | Bin 4007 -> 0 bytes
...PostalServiceElements$EndorsementLineCode.class | Bin 4067 -> 0 bytes
...Details$PostalServiceElements$KeyLineCode.class | Bin 4027 -> 0 bytes
...Details$PostalServiceElements$SortingCode.class | Bin 3149 -> 0 bytes
...ceElements$SupplementaryPostalServiceData.class | Bin 4122 -> 0 bytes
.../xal/AddressDetails$PostalServiceElements.class | Bin 18565 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/AddressDetails.class | Bin 16100 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/AddressLine.class | Bin 3617 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/AddressLines.class | Bin 5150 -> 0 bytes
...AdministrativeArea$AdministrativeAreaName.class | Bin 3907 -> 0 bytes
...inistrativeArea$SubAdministrativeAreaName.class | Bin 4125 -> 0 bytes
.../AdministrativeArea$SubAdministrativeArea.class | Bin 12459 -> 0 bytes
.../kml/v_2_2_0/xal/AdministrativeArea.class | Bin 13309 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/BuildingName.class | Bin 4280 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/CountryName.class | Bin 3617 -> 0 bytes
.../v_2_2_0/xal/Department$DepartmentName.class | Bin 3819 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/Department.class | Bin 9337 -> 0 bytes
.../DependentLocality$DependentLocalityName.class | Bin 3896 -> 0 bytes
...DependentLocality$DependentLocalityNumber.class | Bin 4082 -> 0 bytes
.../kml/v_2_2_0/xal/DependentLocality.class | Bin 20549 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/Firm$FirmName.class | Bin 3753 -> 0 bytes
.../micromata/opengis/kml/v_2_2_0/xal/Firm.class | Bin 10662 -> 0 bytes
.../LargeMailUser$LargeMailUserIdentifier.class | Bin 4309 -> 0 bytes
.../xal/LargeMailUser$LargeMailUserName.class | Bin 3774 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/LargeMailUser.class | Bin 15116 -> 0 bytes
.../kml/v_2_2_0/xal/Locality$LocalityName.class | Bin 3797 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/Locality.class | Bin 18694 -> 0 bytes
.../kml/v_2_2_0/xal/MailStop$MailStopName.class | Bin 3797 -> 0 bytes
.../kml/v_2_2_0/xal/MailStop$MailStopNumber.class | Bin 3858 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/MailStop.class | Bin 7924 -> 0 bytes
.../kml/v_2_2_0/xal/PostBox$PostBoxNumber.class | Bin 3361 -> 0 bytes
.../xal/PostBox$PostBoxNumberExtension.class | Bin 3513 -> 0 bytes
.../v_2_2_0/xal/PostBox$PostBoxNumberPrefix.class | Bin 3887 -> 0 bytes
.../v_2_2_0/xal/PostBox$PostBoxNumberSuffix.class | Bin 3887 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/PostBox.class | Bin 12296 -> 0 bytes
.../v_2_2_0/xal/PostOffice$PostOfficeName.class | Bin 3819 -> 0 bytes
.../v_2_2_0/xal/PostOffice$PostOfficeNumber.class | Bin 4436 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/PostOffice.class | Bin 13029 -> 0 bytes
.../xal/PostalCode$PostTown$PostTownName.class | Bin 3926 -> 0 bytes
.../xal/PostalCode$PostTown$PostTownSuffix.class | Bin 3501 -> 0 bytes
.../kml/v_2_2_0/xal/PostalCode$PostTown.class | Bin 7770 -> 0 bytes
.../v_2_2_0/xal/PostalCode$PostalCodeNumber.class | Bin 3829 -> 0 bytes
.../xal/PostalCode$PostalCodeNumberExtension.class | Bin 4385 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/PostalCode.class | Bin 10305 -> 0 bytes
.../v_2_2_0/xal/PostalRoute$PostalRouteName.class | Bin 3830 -> 0 bytes
.../xal/PostalRoute$PostalRouteNumber.class | Bin 3405 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/PostalRoute.class | Bin 9875 -> 0 bytes
.../kml/v_2_2_0/xal/Premise$PremiseLocation.class | Bin 3371 -> 0 bytes
.../kml/v_2_2_0/xal/Premise$PremiseName.class | Bin 4367 -> 0 bytes
...PremiseNumberRange$PremiseNumberRangeFrom.class | Bin 9071 -> 0 bytes
...e$PremiseNumberRange$PremiseNumberRangeTo.class | Bin 9047 -> 0 bytes
.../v_2_2_0/xal/Premise$PremiseNumberRange.class | Bin 8049 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/Premise.class | Bin 23956 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/PremiseNumber.class | Bin 5587 -> 0 bytes
.../kml/v_2_2_0/xal/PremiseNumberPrefix.class | Bin 4145 -> 0 bytes
.../kml/v_2_2_0/xal/PremiseNumberSuffix.class | Bin 4161 -> 0 bytes
.../xal/SubPremise$SubPremiseLocation.class | Bin 2987 -> 0 bytes
.../v_2_2_0/xal/SubPremise$SubPremiseName.class | Bin 4400 -> 0 bytes
.../v_2_2_0/xal/SubPremise$SubPremiseNumber.class | Bin 5863 -> 0 bytes
.../xal/SubPremise$SubPremiseNumberPrefix.class | Bin 4355 -> 0 bytes
.../xal/SubPremise$SubPremiseNumberSuffix.class | Bin 4355 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/SubPremise.class | Bin 18946 -> 0 bytes
.../xal/Thoroughfare$DependentThoroughfare.class | Bin 12251 -> 0 bytes
...ughfareNumberRange$ThoroughfareNumberFrom.class | Bin 5333 -> 0 bytes
...roughfareNumberRange$ThoroughfareNumberTo.class | Bin 5317 -> 0 bytes
.../xal/Thoroughfare$ThoroughfareNumberRange.class | Bin 10272 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/Thoroughfare.class | Bin 25086 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfareLeadingType.class | Bin 3772 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/ThoroughfareName.class | Bin 3727 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfareNumber.class | Bin 5597 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfareNumberPrefix.class | Bin 4191 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfareNumberSuffix.class | Bin 4191 -> 0 bytes
.../v_2_2_0/xal/ThoroughfarePostDirection.class | Bin 3790 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfarePreDirection.class | Bin 3783 -> 0 bytes
.../kml/v_2_2_0/xal/ThoroughfareTrailingType.class | Bin 3779 -> 0 bytes
.../de/micromata/opengis/kml/v_2_2_0/xal/XAL.class | Bin 7111 -> 0 bytes
.../opengis/kml/v_2_2_0/xal/package-info.class | Bin 362 -> 0 bytes
.../integrationTest/issue2153020/DataReader.class | Bin 1429 -> 0 bytes
.../integrationTest/issue2564366/DataReader.class | Bin 1775 -> 0 bytes
.../opengis/kml/v_2_2_0/AbstractLatLonBox.rs | 1 -
.../opengis/kml/v_2_2_0/AbstractObject.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/AbstractView.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Alias.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/AltitudeMode.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/BalloonStyle.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/BasicLink.rs | 1 -
.../opengis/kml/v_2_2_0/BooleanConverter.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Boundary.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Camera.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Change.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/ColorMode.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/ColorStyle.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Container.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Coordinate.rs | 1 -
.../opengis/kml/v_2_2_0/CoordinatesConverter.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Create.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Data.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Delete.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/DisplayMode.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Document.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ExtendedData.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Feature.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Folder.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Geometry.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/GridOrigin.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/GroundOverlay.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Icon.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/IconStyle.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ImagePyramid.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/ItemIcon.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ItemIconState.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Kml.rs | 2 -
.../de/micromata/opengis/kml/v_2_2_0/KmlFactory.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/LabelStyle.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/LatLonAltBox.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/LatLonBox.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/LineString.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/LineStyle.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/LinearRing.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Link.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ListItemType.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/ListStyle.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Location.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Lod.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/LookAt.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Metadata.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Model.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/MultiGeometry.rs | 1 -
.../opengis/kml/v_2_2_0/NamespaceFilterHandler.rs | 1 -
.../kml/v_2_2_0/NamespaceFilterXMLReader.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/NetworkLink.rs | 1 -
.../opengis/kml/v_2_2_0/NetworkLinkControl.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/Orientation.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Overlay.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Pair.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/PhotoOverlay.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Placemark.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Point.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/PolyStyle.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Polygon.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/RefreshMode.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Region.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ResourceMap.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Scale.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Schema.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/SchemaData.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/ScreenOverlay.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Shape.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/SimpleData.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/SimpleField.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/Snippet.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Style.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/StyleMap.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/StyleSelector.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/StyleState.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/SubStyle.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/TimePrimitive.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/TimeSpan.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/TimeStamp.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Units.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Update.rs | 1 -
.../jak/de/micromata/opengis/kml/v_2_2_0/Vec2.rs | 1 -
.../opengis/kml/v_2_2_0/ViewRefreshMode.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/ViewVolume.rs | 1 -
.../opengis/kml/v_2_2_0/annotations/Obvious.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/atom/Author.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/atom/Link.rs | 1 -
.../opengis/kml/v_2_2_0/gx/AnimatedUpdate.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/gx/FlyTo.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/gx/FlyToMode.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/gx/LatLonQuad.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/gx/PlayMode.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/gx/Playlist.rs | 1 -
.../micromata/opengis/kml/v_2_2_0/gx/SoundCue.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/gx/Tour.rs | 1 -
.../opengis/kml/v_2_2_0/gx/TourControl.rs | 1 -
.../opengis/kml/v_2_2_0/gx/TourPrimitive.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/gx/Wait.rs | 1 -
.../opengis/kml/v_2_2_0/xal/AddressDetails.rs | 15 -
.../opengis/kml/v_2_2_0/xal/AddressLine.rs | 1 -
.../opengis/kml/v_2_2_0/xal/AddressLines.rs | 1 -
.../opengis/kml/v_2_2_0/xal/AdministrativeArea.rs | 4 -
.../opengis/kml/v_2_2_0/xal/BuildingName.rs | 1 -
.../opengis/kml/v_2_2_0/xal/CountryName.rs | 1 -
.../opengis/kml/v_2_2_0/xal/Department.rs | 2 -
.../opengis/kml/v_2_2_0/xal/DependentLocality.rs | 3 -
.../de/micromata/opengis/kml/v_2_2_0/xal/Firm.rs | 2 -
.../opengis/kml/v_2_2_0/xal/LargeMailUser.rs | 3 -
.../micromata/opengis/kml/v_2_2_0/xal/Locality.rs | 2 -
.../micromata/opengis/kml/v_2_2_0/xal/MailStop.rs | 3 -
.../micromata/opengis/kml/v_2_2_0/xal/PostBox.rs | 5 -
.../opengis/kml/v_2_2_0/xal/PostOffice.rs | 3 -
.../opengis/kml/v_2_2_0/xal/PostalCode.rs | 6 -
.../opengis/kml/v_2_2_0/xal/PostalRoute.rs | 3 -
.../micromata/opengis/kml/v_2_2_0/xal/Premise.rs | 6 -
.../opengis/kml/v_2_2_0/xal/PremiseNumber.rs | 1 -
.../opengis/kml/v_2_2_0/xal/PremiseNumberPrefix.rs | 1 -
.../opengis/kml/v_2_2_0/xal/PremiseNumberSuffix.rs | 1 -
.../opengis/kml/v_2_2_0/xal/SubPremise.rs | 6 -
.../opengis/kml/v_2_2_0/xal/Thoroughfare.rs | 5 -
.../kml/v_2_2_0/xal/ThoroughfareLeadingType.rs | 1 -
.../opengis/kml/v_2_2_0/xal/ThoroughfareName.rs | 1 -
.../opengis/kml/v_2_2_0/xal/ThoroughfareNumber.rs | 1 -
.../kml/v_2_2_0/xal/ThoroughfareNumberPrefix.rs | 1 -
.../kml/v_2_2_0/xal/ThoroughfareNumberSuffix.rs | 1 -
.../kml/v_2_2_0/xal/ThoroughfarePostDirection.rs | 1 -
.../kml/v_2_2_0/xal/ThoroughfarePreDirection.rs | 1 -
.../kml/v_2_2_0/xal/ThoroughfareTrailingType.rs | 1 -
.../de/micromata/opengis/kml/v_2_2_0/xal/XAL.rs | 1 -
.../nexml/InterpretNEXML/HyperlinkHandler.class | Bin 1727 -> 0 bytes
.../nexml/InterpretNEXML/InterpretNEXML.class | Bin 2663 -> 0 bytes
.../nexml/InterpretNEXML/ObjectConverter.class | Bin 10197 -> 0 bytes
.../nexml/InterpretNEXML/PredicateHandler.class | Bin 1643 -> 0 bytes
.../InterpretNEXML/PredicateHandlerImpl.class | Bin 2581 -> 0 bytes
.../nexml/InterpretNEXML/TaxonLinkHandler.class | Bin 992 -> 0 bytes
.../nexml/InterpretNEXML/TaxonUIDHandler.class | Bin 988 -> 0 bytes
phyloGeoRef/build/classes/nescent/DemoMain.class | Bin 0 -> 3679 bytes
phyloGeoRef/build/classes/nescent/DemoMain2.class | Bin 0 -> 4084 bytes
phyloGeoRef/build/classes/nescent/DemoMain3.class | Bin 0 -> 4099 bytes
.../build/classes/nescent/phyloGeoRef/Quad.class | Bin 3067 -> 0 bytes
.../build/classes/nescent/phyloGeoRef/Triple.class | Bin 2625 -> 0 bytes
.../classes/nescent/phyloGeoRef/calc3Dtree.class | Bin 9379 -> 0 bytes
.../nescent/phyloGeoRef/geoData/parseCoords.class | Bin 6660 -> 0 bytes
.../phyloGeoRef/geoData/parseMetadata.class | Bin 320 -> 0 bytes
.../nescent/phyloGeoRef/kml/kmlWriter.class | Bin 6346 -> 0 bytes
.../build/classes/nescent/phyloGeoRef/magic.class | Bin 1839 -> 0 bytes
.../nescent/phyloGeoRef/tree/NeXMLtoPhyObj.class | Bin 6468 -> 0 bytes
.../nescent/phyloGeoRef/tree/getNeXMLtree.class | Bin 1061 -> 0 bytes
.../classes/nescent/phyloGeoRef/tree/getTree.class | Bin 3884 -> 0 bytes
.../nescent/phyloGeoRef/tree/returnTree.class | Bin 305 -> 0 bytes
.../nescent/phyloGeoRef/tree/storeTree.class | Bin 1581 -> 0 bytes
.../nescent/phyloGeoRef/tree/treeInfo.class | Bin 299 -> 0 bytes
.../classes/nescent/phylogeoref/Calc3DTree.class | Bin 0 -> 9458 bytes
.../build/classes/nescent/phylogeoref/Magic.class | Bin 0 -> 1868 bytes
.../build/classes/nescent/phylogeoref/Quad.class | Bin 0 -> 2970 bytes
.../build/classes/nescent/phylogeoref/Triple.class | Bin 0 -> 2528 bytes
.../nescent/phylogeoref/geodata/ParseCoords.class | Bin 0 -> 6660 bytes
.../phylogeoref/geodata/ParseMetadata.class | Bin 0 -> 320 bytes
.../phylogeoref/gui/PhyloGeoRefWidget$1.class | Bin 0 -> 891 bytes
.../phylogeoref/gui/PhyloGeoRefWidget$2.class | Bin 0 -> 891 bytes
.../phylogeoref/gui/PhyloGeoRefWidget$3.class | Bin 0 -> 891 bytes
.../phylogeoref/gui/PhyloGeoRefWidget$4.class | Bin 0 -> 891 bytes
.../phylogeoref/gui/PhyloGeoRefWidget$5.class | Bin 0 -> 613 bytes
.../phylogeoref/gui/PhyloGeoRefWidget.class | Bin 0 -> 9685 bytes
.../nescent/phylogeoref/gui/Phylogeoref.class | Bin 0 -> 6762 bytes
.../phylogeoref/processor/PhylogenyProcessor.class | Bin 0 -> 209 bytes
.../phylogeoref/processor/ProcessorFactory.class | Bin 0 -> 947 bytes
.../processor/UnweightedPhylogenyProcessor.class | Bin 0 -> 5952 bytes
.../processor/WeightedPhylogenyProcessor.class | Bin 0 -> 6261 bytes
.../processor/utility/ComputeUtility.class | Bin 0 -> 10862 bytes
.../phylogeoref/reader/CSVMetadataReader.class | Bin 0 -> 1605 bytes
.../phylogeoref/reader/GrandUnifiedReader.class | Bin 0 -> 5184 bytes
.../phylogeoref/reader/MetadataReader.class | Bin 0 -> 179 bytes
.../phylogeoref/reader/MultiFormatReader.class | Bin 0 -> 4254 bytes
.../nescent/phylogeoref/reader/NeXMLEngine.class | Bin 0 -> 3575 bytes
.../nescent/phylogeoref/reader/NeXMLReader.class | Bin 0 -> 3105 bytes
.../phylogeoref/reader/PhylogenyKitchen.class | Bin 0 -> 9287 bytes
.../phylogeoref/reader/PhylogenyMould.class | Bin 0 -> 2697 bytes
.../phylogeoref/reader/TextMetadataReader.class | Bin 0 -> 1793 bytes
.../nescent/phylogeoref/reader/TreeReader.class | Bin 0 -> 288 bytes
.../reader/UniversalMetadataReader.class | Bin 0 -> 1989 bytes
.../phylogeoref/reader/UniversalTreeReader.class | Bin 0 -> 2049 bytes
.../exception/LocationNotFoundException.class | Bin 0 -> 843 bytes
.../phylogeoref/reader/utility/PhyloUtility.class | Bin 0 -> 7290 bytes
.../reader/utility/PhylogenyFactory.class | Bin 0 -> 1507 bytes
.../phylogeoref/validator/PhylogenyValidator.class | Bin 0 -> 5827 bytes
.../exception/InvalidChildrenException.class | Bin 0 -> 848 bytes
.../exception/InvalidEdgeLengthException.class | Bin 0 -> 844 bytes
.../exception/InvalidLatitudeException.class | Bin 0 -> 914 bytes
.../exception/InvalidLongitudeException.class | Bin 0 -> 917 bytes
.../exception/LocationNotFoundException.class | Bin 0 -> 849 bytes
.../exception/MissingEdgeLengthException.class | Bin 0 -> 846 bytes
.../validator/exception/SingleChildException.class | Bin 0 -> 851 bytes
.../validator/exception/ZeroChildException.class | Bin 0 -> 768 bytes
.../phylogeoref/writer/AdvancedKmlWriter.class | Bin 0 -> 3653 bytes
.../writer/HierarchicalKmlPainter.class | Bin 0 -> 3447 bytes
.../nescent/phylogeoref/writer/KmlPainter.class | Bin 0 -> 3885 bytes
.../phylogeoref/writer/LevelwiseKmlPainter.class | Bin 0 -> 3151 bytes
.../nescent/phylogeoref/writer/PaintStyle.class | Bin 0 -> 1112 bytes
.../phylogeoref/writer/SimpleKmlWriter.class | Bin 0 -> 6392 bytes
.../nescent/phylogeoref/writer/utility/AMath.class | Bin 0 -> 2899 bytes
.../phylogeoref/writer/utility/HTMLParlour.class | Bin 0 -> 7033 bytes
.../phylogeoref/writer/utility/KmlConstants.class | Bin 0 -> 893 bytes
.../phylogeoref/writer/utility/KmlToolkit.class | Bin 0 -> 4208 bytes
.../phylogeoref/writer/utility/KmlUtility.class | Bin 0 -> 18956 bytes
phyloGeoRef/build/classes/nescent/testMain.class | Bin 4605 -> 4572 bytes
.../classes/org/forester/application/goac.class | Bin 8858 -> 8846 bytes
.../classes/org/forester/application/nj.class | Bin 6243 -> 6427 bytes
.../org/forester/application/obo_tool.class | Bin 4967 -> 4963 bytes
.../classes/org/forester/application/pccx.class | Bin 10475 -> 10478 bytes
.../forester/application/pfam2go_extractor.class | Bin 4311 -> 4307 bytes
.../classes/org/forester/application/pfam_go.class | Bin 4669 -> 4665 bytes
.../classes/org/forester/application/sdi_r.class | Bin 8895 -> 8891 bytes
.../org/forester/application/surfacing.class | Bin 94928 -> 94900 bytes
.../org/forester/application/surfacing_old.class | Bin 93050 -> 93022 bytes
.../forester/archaeopteryx/ArchaeopteryxA.class | Bin 6187 -> 6078 bytes
.../forester/archaeopteryx/ArchaeopteryxE$2.class | Bin 1271 -> 1198 bytes
.../forester/archaeopteryx/ArchaeopteryxE.class | Bin 30057 -> 29956 bytes
.../archaeopteryx/ColorSchemeChooser.class | Bin 6643 -> 6635 bytes
.../forester/archaeopteryx/ControlPanel$1.class | Bin 903 -> 830 bytes
.../forester/archaeopteryx/ControlPanel$2.class | Bin 1495 -> 1422 bytes
.../org/forester/archaeopteryx/ControlPanel.class | Bin 38162 -> 38158 bytes
.../org/forester/archaeopteryx/DefaultFilter.class | Bin 1392 -> 1307 bytes
.../org/forester/archaeopteryx/FontChooser.class | Bin 8386 -> 8301 bytes
.../archaeopteryx/GraphicsFileFilter.class | Bin 1086 -> 1001 bytes
.../org/forester/archaeopteryx/MainFrame.class | Bin 44380 -> 44336 bytes
.../forester/archaeopteryx/MainFrameApplet$1.class | Bin 929 -> 856 bytes
.../forester/archaeopteryx/MainFrameApplet$2.class | Bin 1316 -> 1243 bytes
.../forester/archaeopteryx/MainFrameApplet$3.class | Bin 2613 -> 2540 bytes
.../forester/archaeopteryx/MainFrameApplet.class | Bin 9690 -> 9605 bytes
.../archaeopteryx/MainFrameApplication$1.class | Bin 1381 -> 1308 bytes
.../archaeopteryx/MainFrameApplication$2.class | Bin 1356 -> 1283 bytes
.../archaeopteryx/MainFrameApplication$3.class | Bin 2910 -> 2837 bytes
.../archaeopteryx/MainFrameApplication.class | Bin 45809 -> 45684 bytes
.../org/forester/archaeopteryx/MainPanel$1.class | Bin 1357 -> 1284 bytes
.../org/forester/archaeopteryx/MainPanel$2.class | Bin 1357 -> 1284 bytes
.../org/forester/archaeopteryx/MainPanel.class | Bin 12949 -> 12832 bytes
.../forester/archaeopteryx/MainPanelApplets.class | Bin 2815 -> 2742 bytes
.../org/forester/archaeopteryx/MouseListener.class | Bin 2093 -> 1972 bytes
.../org/forester/archaeopteryx/NHFilter.class | Bin 1111 -> 1026 bytes
.../org/forester/archaeopteryx/NHXFilter.class | Bin 960 -> 875 bytes
.../org/forester/archaeopteryx/NexusFilter.class | Bin 1046 -> 961 bytes
.../forester/archaeopteryx/NodeEditPanel$1.class | Bin 1207 -> 1110 bytes
.../forester/archaeopteryx/NodeEditPanel$2.class | Bin 1502 -> 1429 bytes
.../archaeopteryx/NodeEditPanel$TagNumber.class | Bin 1501 -> 1428 bytes
.../org/forester/archaeopteryx/NodeEditPanel.class | Bin 25885 -> 25827 bytes
.../org/forester/archaeopteryx/NodeFrame$1.class | Bin 951 -> 878 bytes
.../org/forester/archaeopteryx/NodeFrame$2.class | Bin 1289 -> 1216 bytes
.../org/forester/archaeopteryx/NodePanel.class | Bin 16061 -> 15976 bytes
.../Options$OVERVIEW_PLACEMENT_TYPE.class | Bin 1954 -> 1881 bytes
.../org/forester/archaeopteryx/PdfFilter.class | Bin 903 -> 818 bytes
.../org/forester/archaeopteryx/TextFrame$1.class | Bin 826 -> 753 bytes
.../org/forester/archaeopteryx/TolFilter.class | Bin 1043 -> 958 bytes
.../org/forester/archaeopteryx/TreePanel$1.class | Bin 1044 -> 971 bytes
.../org/forester/archaeopteryx/TreePanel$2.class | Bin 939 -> 866 bytes
...eePanel$SubtreeColorizationActionListener.class | Bin 1427 -> 1354 bytes
.../org/forester/archaeopteryx/TreePanel.class | Bin 98943 -> 98842 bytes
.../org/forester/archaeopteryx/UrlTreeReader.class | Bin 10320 -> 10247 bytes
.../archaeopteryx/Util$GraphicsExportType.class | Bin 1746 -> 1673 bytes
.../classes/org/forester/archaeopteryx/Util.class | Bin 25443 -> 25435 bytes
.../org/forester/archaeopteryx/WebLink.class | Bin 1289 -> 1216 bytes
.../org/forester/archaeopteryx/XMLFilter.class | Bin 1071 -> 986 bytes
.../data/RenderableDomainArchitecture.class | Bin 8316 -> 8135 bytes
.../phylogeny/data/RenderablePhylogenyData.class | Bin 631 -> 486 bytes
.../BasicPhylogeniesWebserviceClient.class | Bin 2956 -> 2775 bytes
.../webservices/PhylogeniesWebserviceClient.class | Bin 1098 -> 1008 bytes
.../webservices/WebservicesManager.class | Bin 1863 -> 1790 bytes
.../forester/development/AminoAcidSequence.class | Bin 3640 -> 3567 bytes
.../org/forester/development/BasicMsa.class | Bin 3407 -> 3334 bytes
.../classes/org/forester/development/Factory.class | Bin 274 -> 227 bytes
.../classes/org/forester/development/Msa.class | Bin 339 -> 263 bytes
.../org/forester/development/MsaFactory.class | Bin 243 -> 196 bytes
.../org/forester/development/Sequence.class | Bin 320 -> 253 bytes
.../forester/development/SimpleMutableMsa.class | Bin 2373 -> 2264 bytes
.../development/StreamBasedMsaFactory.class | Bin 311 -> 264 bytes
.../org/forester/development/SupportCount.class | Bin 7577 -> 7572 bytes
.../org/forester/go/BasicGoRelationship.class | Bin 3834 -> 3749 bytes
.../classes/org/forester/go/BasicGoSubset.class | Bin 3204 -> 3119 bytes
.../classes/org/forester/go/BasicGoTerm.class | Bin 7129 -> 6984 bytes
.../classes/org/forester/go/BasicGoXRef.class | Bin 4100 -> 4003 bytes
.../build/classes/org/forester/go/GoId.class | Bin 2538 -> 2441 bytes
.../classes/org/forester/go/GoNameSpace.class | Bin 3377 -> 3292 bytes
.../classes/org/forester/go/GoRelationship.class | Bin 741 -> 699 bytes
.../build/classes/org/forester/go/GoSubset.class | Bin 858 -> 822 bytes
.../build/classes/org/forester/go/GoTerm.class | Bin 1005 -> 909 bytes
.../build/classes/org/forester/go/GoUtils.class | Bin 9425 -> 9401 bytes
.../build/classes/org/forester/go/GoXRef.class | Bin 1113 -> 1071 bytes
.../build/classes/org/forester/go/Mapping.class | Bin 357 -> 315 bytes
.../build/classes/org/forester/go/OBOparser.class | Bin 8776 -> 8756 bytes
.../classes/org/forester/go/PfamToGoMapping.class | Bin 2464 -> 2343 bytes
.../org/forester/go/etc/MetaOntologizer.class | Bin 21593 -> 21573 bytes
.../org/forester/go/etc/OntologizerResult.class | Bin 5328 -> 5255 bytes
.../forester/io/parsers/HmmPfamOutputParser.class | Bin 20735 -> 20727 bytes
.../io/parsers/HmmscanPerDomainTableParser.class | Bin 19162 -> 19154 bytes
.../org/forester/io/parsers/PhylogenyParser.class | Bin 402 -> 349 bytes
.../io/parsers/nexus/NexusCharactersParser.class | Bin 3940 -> 3936 bytes
.../forester/io/parsers/nexus/PaupLogParser.class | Bin 4777 -> 4773 bytes
.../io/parsers/phyloxml/PhyloXmlHandler.class | Bin 12215 -> 12106 bytes
...PhyloXmlParser$PhyloXmlParserErrorHandler.class | Bin 2622 -> 2525 bytes
.../io/parsers/phyloxml/PhyloXmlParser.class | Bin 10557 -> 10553 bytes
.../io/parsers/phyloxml/PhyloXmlUtil.class | Bin 2582 -> 2578 bytes
.../forester/io/parsers/phyloxml/XmlElement.class | Bin 6016 -> 5943 bytes
.../phyloxml/phylogenydata/AccessionParser.class | Bin 1758 -> 1685 bytes
.../phyloxml/phylogenydata/AnnotationParser.class | Bin 3294 -> 3221 bytes
.../phylogenydata/BinaryCharactersParser.class | Bin 3767 -> 3694 bytes
.../phyloxml/phylogenydata/BranchWidthParser.class | Bin 1476 -> 1403 bytes
.../phyloxml/phylogenydata/ColorParser.class | Bin 2181 -> 2108 bytes
.../phyloxml/phylogenydata/ConfidenceParser.class | Bin 1838 -> 1765 bytes
.../phyloxml/phylogenydata/DateParser.class | Bin 2709 -> 2636 bytes
.../phylogenydata/DistributionParser.class | Bin 1458 -> 1385 bytes
.../phylogenydata/DomainArchitectureParser.class | Bin 3155 -> 3082 bytes
.../phyloxml/phylogenydata/EventParser.class | Bin 3057 -> 2984 bytes
.../phyloxml/phylogenydata/IdentifierParser.class | Bin 1866 -> 1793 bytes
.../PhylogenyDataPhyloXmlParser.class | Bin 416 -> 368 bytes
.../phyloxml/phylogenydata/PointParser.class | Bin 1437 -> 1364 bytes
.../phyloxml/phylogenydata/PropertyParser.class | Bin 2807 -> 2734 bytes
.../phylogenydata/ProteinDomainParser.class | Bin 2833 -> 2760 bytes
.../phyloxml/phylogenydata/ReferenceParser.class | Bin 1751 -> 1678 bytes
.../phyloxml/phylogenydata/SequenceParser.class | Bin 3566 -> 3493 bytes
.../phylogenydata/SequenceRelationParser.class | Bin 1414 -> 1341 bytes
.../parsers/phyloxml/phylogenydata/UriParser.class | Bin 2244 -> 2171 bytes
.../tol/TolParser$TolParserErrorHandler.class | Bin 2421 -> 2324 bytes
.../org/forester/io/parsers/tol/TolParser.class | Bin 9703 -> 9699 bytes
.../forester/io/parsers/tol/TolXmlHandler.class | Bin 9279 -> 9170 bytes
.../org/forester/io/writers/PhylogenyWriter.class | Bin 20773 -> 20769 bytes
.../BasicExternalNodeBasedCoverageExtender.class | Bin 7300 -> 7298 bytes
.../pccx/BranchCountingBasedScoringMethod.class | Bin 2840 -> 2843 bytes
.../pccx/BranchLengthBasedScoringMethod.class | Bin 2019 -> 1922 bytes
.../build/classes/org/forester/pccx/Coverage.class | Bin 224 -> 182 bytes
.../forester/pccx/CoverageCalculationMethod.class | Bin 576 -> 477 bytes
.../forester/pccx/CoverageCalculationOptions.class | Bin 229 -> 193 bytes
.../org/forester/pccx/CoverageExtender.class | Bin 601 -> 484 bytes
.../pccx/ExternalNodeBasedCoverageMethod.class | Bin 6535 -> 6538 bytes
.../pccx/LogBranchLengthBasedScoringMethod.class | Bin 2139 -> 2042 bytes
.../pccx/ScoringMethodForExternalNode.class | Bin 802 -> 683 bytes
.../classes/org/forester/phylogeny/Edge.class | Bin 316 -> 268 bytes
.../classes/org/forester/phylogeny/Phylogeny.class | Bin 25230 -> 25149 bytes
.../org/forester/phylogeny/PhylogenyBranch.class | Bin 3829 -> 3732 bytes
.../org/forester/phylogeny/PhylogenyMethods.class | Bin 25193 -> 25084 bytes
.../org/forester/phylogeny/PhylogenyNode.class | Bin 18048 -> 17947 bytes
.../org/forester/phylogeny/PhylogenyNodeI.class | Bin 641 -> 515 bytes
.../org/forester/phylogeny/data/Accession.class | Bin 3444 -> 3347 bytes
.../org/forester/phylogeny/data/Annotation.class | Bin 5772 -> 5627 bytes
.../forester/phylogeny/data/BinaryCharacters.class | Bin 9447 -> 9302 bytes
.../org/forester/phylogeny/data/BranchColor.class | Bin 3017 -> 2872 bytes
.../org/forester/phylogeny/data/BranchData.class | Bin 4616 -> 4475 bytes
.../org/forester/phylogeny/data/BranchWidth.class | Bin 2523 -> 2378 bytes
.../org/forester/phylogeny/data/Confidence.class | Bin 3938 -> 3853 bytes
.../classes/org/forester/phylogeny/data/Date.class | Bin 4463 -> 4318 bytes
.../org/forester/phylogeny/data/Distribution.class | Bin 4185 -> 4040 bytes
.../phylogeny/data/DomainArchitecture.class | Bin 7092 -> 7019 bytes
.../org/forester/phylogeny/data/Event.class | Bin 8498 -> 8425 bytes
.../org/forester/phylogeny/data/Identifier.class | Bin 3700 -> 3603 bytes
.../forester/phylogeny/data/PhylogenyData.class | Bin 572 -> 460 bytes
.../org/forester/phylogeny/data/Point.class | Bin 4106 -> 3961 bytes
.../forester/phylogeny/data/PropertiesMap.class | Bin 5004 -> 4839 bytes
.../phylogeny/data/Property$AppliesTo$1.class | Bin 803 -> 730 bytes
.../phylogeny/data/Property$AppliesTo$2.class | Bin 799 -> 726 bytes
.../phylogeny/data/Property$AppliesTo$3.class | Bin 798 -> 725 bytes
.../phylogeny/data/Property$AppliesTo$4.class | Bin 804 -> 731 bytes
.../phylogeny/data/Property$AppliesTo$5.class | Bin 807 -> 734 bytes
.../phylogeny/data/Property$AppliesTo$6.class | Bin 799 -> 726 bytes
.../org/forester/phylogeny/data/Property.class | Bin 6844 -> 6699 bytes
.../forester/phylogeny/data/ProteinDomain.class | Bin 4747 -> 4674 bytes
.../org/forester/phylogeny/data/Reference.class | Bin 3521 -> 3448 bytes
.../org/forester/phylogeny/data/Sequence.class | Bin 8804 -> 8703 bytes
.../forester/phylogeny/data/SequenceRelation.class | Bin 1492 -> 1359 bytes
.../org/forester/phylogeny/data/Taxonomy.class | Bin 8577 -> 8472 bytes
.../classes/org/forester/phylogeny/data/Uri.class | Bin 3213 -> 3080 bytes
.../factories/ParserBasedPhylogenyFactory.class | Bin 3060 -> 2987 bytes
.../phylogeny/factories/PhylogenyFactory.class | Bin 666 -> 576 bytes
.../iterators/PhylogenyNodeIterator.class | Bin 496 -> 448 bytes
.../BasicCharacterStateMatrix.class | Bin 14279 -> 13990 bytes
.../BasicSymmetricalDistanceMatrix.class | Bin 4917 -> 4844 bytes
.../CharacterStateMatrix$BinaryStates.class | Bin 2305 -> 2232 bytes
.../CharacterStateMatrix$GainLossStates.class | Bin 2295 -> 2222 bytes
.../phylogenyinference/CharacterStateMatrix.class | Bin 2284 -> 1984 bytes
.../phylogenyinference/DiscreteState.class | Bin 2169 -> 2060 bytes
.../phylogenyinference/DistanceMatrix.class | Bin 709 -> 568 bytes
.../phylogenyinference/DistanceMatrixParser.class | Bin 336 -> 289 bytes
.../phylogenyinference/DistanceMethod.class | Bin 287 -> 243 bytes
.../phylogenyinference/DolloParsimony.class | Bin 14174 -> 14166 bytes
.../phylogenyinference/FitchParsimony.class | Bin 19804 -> 19792 bytes
.../phylogenyinference/NeighborJoining.class | Bin 7148 -> 7144 bytes
.../phylogenyinference/SankoffParsimony.class | Bin 19812 -> 19800 bytes
.../SymmetricalDistanceMatrixParser.class | Bin 6979 -> 6975 bytes
.../build/classes/org/forester/sdi/GSDI.class | Bin 7547 -> 7462 bytes
.../build/classes/org/forester/sdi/SDI.class | Bin 7566 -> 7493 bytes
.../AdjactantDirectedCombinableDomains.class | Bin 1887 -> 1810 bytes
.../surfacing/BasicBinaryDomainCombination.class | Bin 4931 -> 4822 bytes
.../surfacing/BasicCombinableDomains.class | Bin 6460 -> 6367 bytes
.../org/forester/surfacing/BasicDomain.class | Bin 5295 -> 5174 bytes
.../BasicDomainSimilarityCalculator.class | Bin 9038 -> 9022 bytes
.../BasicGenomeWideCombinableDomains.class | Bin 14567 -> 14414 bytes
.../org/forester/surfacing/BasicProtein.class | Bin 5165 -> 5036 bytes
.../org/forester/surfacing/BasicSpecies.class | Bin 2118 -> 2009 bytes
.../surfacing/BinaryDomainCombination.class | Bin 959 -> 856 bytes
.../org/forester/surfacing/CombinableDomains.class | Bin 1581 -> 1360 bytes
...CombinationsBasedPairwiseDomainSimilarity.class | Bin 1392 -> 1319 bytes
...nsBasedPairwiseDomainSimilarityCalculator.class | Bin 2175 -> 2167 bytes
.../surfacing/DirectedCombinableDomains.class | Bin 1851 -> 1774 bytes
.../classes/org/forester/surfacing/Domain.class | Bin 751 -> 633 bytes
...chitectureBasedGenomeSimilarityCalculator.class | Bin 8859 -> 8827 bytes
.../surfacing/DomainCountsDifferenceUtil.class | Bin 30156 -> 30088 bytes
.../classes/org/forester/surfacing/DomainId.class | Bin 3536 -> 3427 bytes
.../org/forester/surfacing/DomainLengths.class | Bin 4888 -> 4876 bytes
.../forester/surfacing/DomainLengthsTable.class | Bin 6817 -> 6805 bytes
.../surfacing/DomainParsimonyCalculator.class | Bin 28009 -> 27963 bytes
.../org/forester/surfacing/DomainSimilarity.class | Bin 1711 -> 1559 bytes
.../surfacing/DomainSimilarityCalculator.class | Bin 897 -> 728 bytes
.../surfacing/GenomeWideCombinableDomains.class | Bin 1653 -> 1534 bytes
.../surfacing/PairwiseDomainSimilarity.class | Bin 267 -> 225 bytes
.../PairwiseDomainSimilarityCalculator.class | Bin 404 -> 340 bytes
.../surfacing/PairwiseGenomeComparator.class | Bin 15288 -> 15280 bytes
.../surfacing/PrintableDomainSimilarity.class | Bin 19109 -> 19004 bytes
...intableSpeciesSpecificDomainSimilariyData.class | Bin 5340 -> 5263 bytes
.../classes/org/forester/surfacing/Protein.class | Bin 1131 -> 956 bytes
.../classes/org/forester/surfacing/ProteinId.class | Bin 2128 -> 2019 bytes
.../org/forester/surfacing/SimpleDomain.class | Bin 2906 -> 2785 bytes
.../classes/org/forester/surfacing/Species.class | Bin 325 -> 289 bytes
.../SpeciesSpecificDomainSimilariyData.class | Bin 917 -> 811 bytes
.../org/forester/surfacing/SurfacingUtil.class | Bin 69426 -> 69337 bytes
.../org/forester/surfacing/TestSurfacing.class | Bin 106161 -> 106049 bytes
.../build/classes/org/forester/test/Test.class | Bin 126411 -> 126305 bytes
.../org/forester/tools/ConfidenceAssessor.class | Bin 6452 -> 6440 bytes
.../org/forester/tools/TreeSplitMatrix.class | Bin 7894 -> 7805 bytes
.../forester/util/BasicDescriptiveStatistics.class | Bin 6559 -> 6486 bytes
.../classes/org/forester/util/BasicTable.class | Bin 5625 -> 5552 bytes
.../org/forester/util/CommandLineArguments.class | Bin 8610 -> 8606 bytes
.../org/forester/util/DescriptiveStatistics.class | Bin 922 -> 746 bytes
.../classes/org/forester/util/ForesterUtil.class | Bin 29057 -> 29045 bytes
.../classes/org/forester/util/GeneralTable.class | Bin 5081 -> 4984 bytes
.../forester/util/WindowsUtils$StreamReader.class | Bin 1092 -> 1019 bytes
.../classes/org/nexml/model/Annotatable.class | Bin 3560 -> 3240 bytes
.../build/classes/org/nexml/model/Annotation.class | Bin 1568 -> 1491 bytes
.../org/nexml/model/CategoricalMatrix.class | Bin 493 -> 451 bytes
.../build/classes/org/nexml/model/Character.class | Bin 357 -> 293 bytes
.../classes/org/nexml/model/CharacterState.class | Bin 300 -> 247 bytes
.../org/nexml/model/CharacterStateSet.class | Bin 1289 -> 1143 bytes
.../org/nexml/model/CompoundCharacterState.class | Bin 459 -> 397 bytes
.../classes/org/nexml/model/ContinuousMatrix.class | Bin 338 -> 302 bytes
.../build/classes/org/nexml/model/Document.class | Bin 1108 -> 1114 bytes
.../classes/org/nexml/model/DocumentFactory.class | Bin 2345 -> 3576 bytes
.../build/classes/org/nexml/model/Edge.class | Bin 353 -> 364 bytes
.../build/classes/org/nexml/model/FloatEdge.class | Bin 283 -> 230 bytes
.../build/classes/org/nexml/model/IntEdge.class | Bin 281 -> 228 bytes
.../build/classes/org/nexml/model/Matrix.class | Bin 1288 -> 1272 bytes
.../build/classes/org/nexml/model/MatrixCell.class | Bin 418 -> 366 bytes
.../classes/org/nexml/model/MolecularMatrix.class | Bin 990 -> 900 bytes
.../build/classes/org/nexml/model/Network.class | Bin 1018 -> 886 bytes
.../classes/org/nexml/model/NexmlWritable.class | Bin 385 -> 468 bytes
.../build/classes/org/nexml/model/Node.class | Bin 269 -> 225 bytes
.../classes/org/nexml/model/OTULinkable.class | Bin 293 -> 243 bytes
.../build/classes/org/nexml/model/OTUs.class | Bin 1143 -> 1061 bytes
.../classes/org/nexml/model/OTUsLinkable.class | Bin 300 -> 249 bytes
.../build/classes/org/nexml/model/Segmented.class | Bin 0 -> 272 bytes
.../classes/org/nexml/model/TestAnnotation.class | Bin 3766 -> 0 bytes
.../classes/org/nexml/model/TestBaseURI.class | Bin 1467 -> 0 bytes
.../org/nexml/model/TestContinuousMatrix.class | Bin 817 -> 0 bytes
.../classes/org/nexml/model/TestFileParse.class | Bin 790 -> 0 bytes
.../build/classes/org/nexml/model/TestMatrix.class | Bin 773 -> 0 bytes
.../org/nexml/model/TestMolecularMatrix.class | Bin 1026 -> 0 bytes
.../build/classes/org/nexml/model/TestOTUs.class | Bin 757 -> 0 bytes
.../classes/org/nexml/model/TestParseTrees.class | Bin 2444 -> 0 bytes
.../org/nexml/model/TestSerialization.class | Bin 899 -> 0 bytes
.../classes/org/nexml/model/TestTreeBlock.class | Bin 891 -> 0 bytes
.../build/classes/org/nexml/model/Tree.class | Bin 315 -> 279 bytes
.../build/classes/org/nexml/model/TreeBlock.class | Bin 773 -> 843 bytes
.../org/nexml/model/impl/AnnotatableImpl.class | Bin 15091 -> 15311 bytes
.../org/nexml/model/impl/AnnotationImpl$1.class | Bin 0 -> 1875 bytes
.../org/nexml/model/impl/AnnotationImpl$2.class | Bin 0 -> 1792 bytes
.../impl/AnnotationImpl$Base64BinaryWrapper.class | Bin 0 -> 1277 bytes
.../model/impl/AnnotationImpl$CharWrapper.class | Bin 0 -> 864 bytes
.../impl/AnnotationImpl$DateTimeWrapper.class | Bin 0 -> 1142 bytes
.../impl/AnnotationImpl$DurationWrapper.class | Bin 0 -> 1332 bytes
.../model/impl/AnnotationImpl$SimpleObject.class | Bin 729 -> 729 bytes
.../org/nexml/model/impl/AnnotationImpl.class | Bin 16040 -> 19218 bytes
.../nexml/model/impl/CategoricalMatrixImpl.class | Bin 9104 -> 8992 bytes
.../org/nexml/model/impl/CharacterImpl.class | Bin 1452 -> 1379 bytes
.../org/nexml/model/impl/CharacterStateImpl.class | Bin 1283 -> 1210 bytes
.../nexml/model/impl/CharacterStateSetImpl.class | Bin 6844 -> 6759 bytes
.../model/impl/CompoundCharacterStateImpl.class | Bin 2375 -> 2371 bytes
.../nexml/model/impl/ContinuousMatrixImpl.class | Bin 6023 -> 6092 bytes
.../org/nexml/model/impl/DocumentImpl.class | Bin 16125 -> 17114 bytes
.../classes/org/nexml/model/impl/EdgeImpl.class | Bin 2378 -> 2391 bytes
.../org/nexml/model/impl/FloatEdgeImpl.class | Bin 1433 -> 1504 bytes
.../org/nexml/model/impl/FloatNetworkImpl.class | Bin 2362 -> 2277 bytes
.../org/nexml/model/impl/FloatTreeImpl.class | Bin 2341 -> 2256 bytes
.../classes/org/nexml/model/impl/IntEdgeImpl.class | Bin 1778 -> 1776 bytes
.../org/nexml/model/impl/IntNetworkImpl.class | Bin 2255 -> 2170 bytes
.../classes/org/nexml/model/impl/IntTreeImpl.class | Bin 2317 -> 2232 bytes
.../org/nexml/model/impl/MatrixCellImpl.class | Bin 1885 -> 1812 bytes
.../classes/org/nexml/model/impl/MatrixImpl.class | Bin 9474 -> 9903 bytes
.../impl/MolecularCharacterStateSetImpl.class | Bin 8598 -> 8091 bytes
.../org/nexml/model/impl/MolecularMatrixImpl.class | Bin 9704 -> 9117 bytes
.../classes/org/nexml/model/impl/NetworkImpl.class | Bin 6024 -> 5879 bytes
.../org/nexml/model/impl/NexmlWritableImpl.class | Bin 6079 -> 6432 bytes
.../classes/org/nexml/model/impl/NodeImpl.class | Bin 1786 -> 1701 bytes
.../classes/org/nexml/model/impl/OTUImpl.class | Bin 835 -> 762 bytes
.../classes/org/nexml/model/impl/OTUsImpl.class | Bin 3557 -> 3875 bytes
.../model/impl/PolymorphicCharacterStateImpl.class | Bin 882 -> 809 bytes
.../classes/org/nexml/model/impl/SetManager.class | Bin 5397 -> 5385 bytes
.../org/nexml/model/impl/TreeBlockImpl.class | Bin 11379 -> 11911 bytes
.../classes/org/nexml/model/impl/TreeImpl.class | Bin 12085 -> 12211 bytes
.../model/impl/UncertainCharacterStateImpl.class | Bin 872 -> 799 bytes
phyloGeoRef/build/classes/testCoords.csv | 8 +
phyloGeoRef/build/classes/testCoords2.csv | 8 +
phyloGeoRef/build/classes/testCoordsmeta.csv | 8 +
phyloGeoRef/build/classes/testCoordsmeta2.csv | 9 +
phyloGeoRef/build/classes/testMain.class | Bin 3762 -> 0 bytes
phyloGeoRef/build/classes/testTree.nwk | 1 +
.../build/classes/validator/XmlValidator.class | Bin 2276 -> 0 bytes
.../processor/utility/ComputeUtilityTest.class | Bin 0 -> 2434 bytes
phyloGeoRef/dist/README.TXT | 32 +
phyloGeoRef/dist/javadoc/.DS_Store | Bin 12292 -> 0 bytes
phyloGeoRef/dist/javadoc/AddressExample.html | 269 -
phyloGeoRef/dist/javadoc/JdbcExample.html | 250 -
phyloGeoRef/dist/javadoc/MockResultSet.html | 5308 ------
.../javadoc/au/com/bytecode/opencsv/CSVParser.html | 609 -
.../au/com/bytecode/opencsv/CSVParserTest.html | 590 -
.../javadoc/au/com/bytecode/opencsv/CSVReader.html | 570 -
.../au/com/bytecode/opencsv/CSVReaderTest.html | 430 -
.../javadoc/au/com/bytecode/opencsv/CSVWriter.html | 750 -
.../au/com/bytecode/opencsv/CSVWriterTest.html | 419 -
.../javadoc/au/com/bytecode/opencsv/MockClob.html | 586 -
.../au/com/bytecode/opencsv/MockResultSet.html | 4982 ------
.../com/bytecode/opencsv/MockResultSetHelper.html | 299 -
.../bytecode/opencsv/MockResultSetMetaData.html | 889 -
.../au/com/bytecode/opencsv/OpencsvTest.html | 263 -
.../au/com/bytecode/opencsv/ResultSetHelper.html | 237 -
.../bytecode/opencsv/ResultSetHelperService.html | 329 -
.../opencsv/ResultSetHelperServiceTest.html | 426 -
.../au/com/bytecode/opencsv/UniCodeTest.html | 343 -
.../bean/ColumnPositionMappingStrategy.html | 371 -
.../bean/ColumnPositionMappingStrategyTest.html | 295 -
.../au/com/bytecode/opencsv/bean/CsvToBean.html | 356 -
.../com/bytecode/opencsv/bean/CsvToBeanTest.html | 248 -
.../bean/HeaderColumnNameMappingStrategy.html | 554 -
.../bean/HeaderColumnNameMappingStrategyTest.html | 269 -
.../HeaderColumnNameTranslateMappingStrategy.html | 341 -
...aderColumnNameTranslateMappingStrategyTest.html | 248 -
.../com/bytecode/opencsv/bean/MappingStrategy.html | 266 -
.../au/com/bytecode/opencsv/bean/MockBean.html | 402 -
.../com/bytecode/opencsv/bean/package-frame.html | 60 -
.../com/bytecode/opencsv/bean/package-summary.html | 224 -
.../au/com/bytecode/opencsv/bean/package-tree.html | 162 -
.../au/com/bytecode/opencsv/package-frame.html | 70 -
.../au/com/bytecode/opencsv/package-summary.html | 244 -
.../au/com/bytecode/opencsv/package-tree.html | 166 -
phyloGeoRef/dist/javadoc/constant-values.html | 3075 ----
.../de/micromata/jak/AtsConformanceLevel1Test.html | 1360 --
.../de/micromata/jak/AtsConformanceLevel2Test.html | 947 -
.../de/micromata/jak/AtsConformanceLevel3Test.html | 472 -
.../de/micromata/jak/KmlGxReferenceApiTest.html | 1148 --
.../de/micromata/jak/KmlReferenceApiTest.html | 2775 ---
.../de/micromata/jak/KmlReferenceCheck.html | 1642 --
.../de/micromata/jak/KmlReferencePojoTest.html | 2775 ---
.../de/micromata/jak/NameSpaceBeautyfier.html | 278 -
.../dist/javadoc/de/micromata/jak/StressTest.html | 259 -
.../dist/javadoc/de/micromata/jak/Utils.html | 519 -
.../de/micromata/jak/examples/CloneTest.html | 248 -
.../de/micromata/jak/examples/Example1.html | 263 -
.../de/micromata/jak/examples/Example2.html | 262 -
.../de/micromata/jak/examples/Example3.html | 261 -
.../de/micromata/jak/examples/Example4.html | 262 -
.../de/micromata/jak/examples/ReadCsvFileTest.html | 276 -
.../javadoc/de/micromata/jak/examples/Utils.html | 411 -
.../de/micromata/jak/examples/package-frame.html | 45 -
.../de/micromata/jak/examples/package-summary.html | 184 -
.../de/micromata/jak/examples/package-tree.html | 154 -
.../incubator/JAXBSample.DeclareOnTopMapper.html | 279 -
.../incubator/JAXBSample.PreDeclaredMapper.html | 279 -
.../jak/incubator/JAXBSample.PreferredMapper.html | 276 -
.../de/micromata/jak/incubator/JAXBSample.html | 312 -
.../de/micromata/jak/incubator/JustAType.html | 272 -
.../de/micromata/jak/incubator/KmzTest.html | 273 -
.../de/micromata/jak/incubator/package-frame.html | 43 -
.../micromata/jak/incubator/package-summary.html | 178 -
.../de/micromata/jak/incubator/package-tree.html | 158 -
.../jak/internal/IAtsConformanceLevel1.html | 1652 --
.../jak/internal/IAtsConformanceLevel2.html | 1127 --
.../jak/internal/IAtsConformanceLevel3.html | 508 -
.../de/micromata/jak/internal/IKMLReference.html | 2437 ---
.../de/micromata/jak/internal/IKmlGxReference.html | 988 --
.../de/micromata/jak/internal/package-frame.html | 41 -
.../de/micromata/jak/internal/package-summary.html | 177 -
.../de/micromata/jak/internal/package-tree.html | 152 -
.../dist/javadoc/de/micromata/jak/jugh/Jugh.html | 384 -
.../de/micromata/jak/jugh/package-frame.html | 33 -
.../de/micromata/jak/jugh/package-summary.html | 158 -
.../de/micromata/jak/jugh/package-tree.html | 154 -
.../javadoc/de/micromata/jak/package-frame.html | 51 -
.../javadoc/de/micromata/jak/package-summary.html | 194 -
.../javadoc/de/micromata/jak/package-tree.html | 162 -
.../opengis/kml/v_2_2_0/AbstractLatLonBox.html | 1097 --
.../opengis/kml/v_2_2_0/AbstractObject.html | 629 -
.../opengis/kml/v_2_2_0/AbstractView.html | 696 -
.../de/micromata/opengis/kml/v_2_2_0/Alias.html | 925 -
.../opengis/kml/v_2_2_0/AltitudeMode.html | 419 -
.../opengis/kml/v_2_2_0/BalloonStyle.html | 1421 --
.../micromata/opengis/kml/v_2_2_0/BasicLink.html | 785 -
.../opengis/kml/v_2_2_0/BooleanConverter.html | 285 -
.../de/micromata/opengis/kml/v_2_2_0/Boundary.html | 669 -
.../de/micromata/opengis/kml/v_2_2_0/Camera.html | 1671 --
.../de/micromata/opengis/kml/v_2_2_0/Change.html | 465 -
.../micromata/opengis/kml/v_2_2_0/ColorMode.html | 371 -
.../micromata/opengis/kml/v_2_2_0/ColorStyle.html | 1101 --
.../micromata/opengis/kml/v_2_2_0/Container.html | 1398 --
.../micromata/opengis/kml/v_2_2_0/Coordinate.html | 635 -
.../opengis/kml/v_2_2_0/CoordinatesConverter.html | 285 -
.../de/micromata/opengis/kml/v_2_2_0/Create.html | 537 -
.../de/micromata/opengis/kml/v_2_2_0/Data.html | 862 -
.../de/micromata/opengis/kml/v_2_2_0/Delete.html | 700 -
.../micromata/opengis/kml/v_2_2_0/DisplayMode.html | 371 -
.../de/micromata/opengis/kml/v_2_2_0/Document.html | 2103 ---
.../opengis/kml/v_2_2_0/ExtendedData.html | 774 -
.../de/micromata/opengis/kml/v_2_2_0/Feature.html | 3082 ----
.../de/micromata/opengis/kml/v_2_2_0/Folder.html | 1931 ---
.../de/micromata/opengis/kml/v_2_2_0/Geometry.html | 718 -
.../micromata/opengis/kml/v_2_2_0/GridOrigin.html | 371 -
.../opengis/kml/v_2_2_0/GroundOverlay.html | 1992 ---
.../de/micromata/opengis/kml/v_2_2_0/Icon.html | 1644 --
.../micromata/opengis/kml/v_2_2_0/IconStyle.html | 1621 --
.../opengis/kml/v_2_2_0/ImagePyramid.html | 1100 --
.../de/micromata/opengis/kml/v_2_2_0/ItemIcon.html | 938 -
.../opengis/kml/v_2_2_0/ItemIconState.html | 442 -
.../de/micromata/opengis/kml/v_2_2_0/Kml.html | 1506 --
.../micromata/opengis/kml/v_2_2_0/KmlFactory.html | 2405 ---
.../micromata/opengis/kml/v_2_2_0/LabelStyle.html | 1213 --
.../opengis/kml/v_2_2_0/LatLonAltBox.html | 1261 --
.../micromata/opengis/kml/v_2_2_0/LatLonBox.html | 1084 --
.../micromata/opengis/kml/v_2_2_0/LineString.html | 1429 --
.../micromata/opengis/kml/v_2_2_0/LineStyle.html | 1204 --
.../micromata/opengis/kml/v_2_2_0/LinearRing.html | 1432 --
.../de/micromata/opengis/kml/v_2_2_0/Link.html | 1676 --
.../opengis/kml/v_2_2_0/ListItemType.html | 409 -
.../micromata/opengis/kml/v_2_2_0/ListStyle.html | 1358 --
.../de/micromata/opengis/kml/v_2_2_0/Location.html | 1013 --
.../de/micromata/opengis/kml/v_2_2_0/Lod.html | 1119 --
.../de/micromata/opengis/kml/v_2_2_0/LookAt.html | 1619 --
.../de/micromata/opengis/kml/v_2_2_0/Metadata.html | 439 -
.../de/micromata/opengis/kml/v_2_2_0/Model.html | 1706 --
.../opengis/kml/v_2_2_0/MultiGeometry.html | 1175 --
.../micromata/opengis/kml/v_2_2_0/NetworkLink.html | 1909 ---
.../opengis/kml/v_2_2_0/NetworkLinkControl.html | 1694 --
.../micromata/opengis/kml/v_2_2_0/Orientation.html | 1035 --
.../de/micromata/opengis/kml/v_2_2_0/Overlay.html | 1770 --
.../de/micromata/opengis/kml/v_2_2_0/Pair.html | 1078 --
.../opengis/kml/v_2_2_0/PhotoOverlay.html | 2237 ---
.../micromata/opengis/kml/v_2_2_0/Placemark.html | 1688 --
.../de/micromata/opengis/kml/v_2_2_0/Point.html | 1322 --
.../micromata/opengis/kml/v_2_2_0/PolyStyle.html | 1294 --
.../de/micromata/opengis/kml/v_2_2_0/Polygon.html | 1506 --
.../micromata/opengis/kml/v_2_2_0/RefreshMode.html | 387 -
.../de/micromata/opengis/kml/v_2_2_0/Region.html | 1004 --
.../micromata/opengis/kml/v_2_2_0/ResourceMap.html | 850 -
.../de/micromata/opengis/kml/v_2_2_0/Scale.html | 985 --
.../de/micromata/opengis/kml/v_2_2_0/Schema.html | 773 -
.../micromata/opengis/kml/v_2_2_0/SchemaData.html | 843 -
.../opengis/kml/v_2_2_0/ScreenOverlay.html | 2341 ---
.../de/micromata/opengis/kml/v_2_2_0/Shape.html | 387 -
.../micromata/opengis/kml/v_2_2_0/SimpleData.html | 525 -
.../micromata/opengis/kml/v_2_2_0/SimpleField.html | 703 -
.../de/micromata/opengis/kml/v_2_2_0/Snippet.html | 528 -
.../de/micromata/opengis/kml/v_2_2_0/Style.html | 1729 --
.../de/micromata/opengis/kml/v_2_2_0/StyleMap.html | 1035 --
.../opengis/kml/v_2_2_0/StyleSelector.html | 725 -
.../micromata/opengis/kml/v_2_2_0/StyleState.html | 397 -
.../de/micromata/opengis/kml/v_2_2_0/SubStyle.html | 696 -
.../opengis/kml/v_2_2_0/TimePrimitive.html | 721 -
.../de/micromata/opengis/kml/v_2_2_0/TimeSpan.html | 1080 --
.../micromata/opengis/kml/v_2_2_0/TimeStamp.html | 977 --
.../de/micromata/opengis/kml/v_2_2_0/Units.html | 387 -
.../de/micromata/opengis/kml/v_2_2_0/Update.html | 630 -
.../de/micromata/opengis/kml/v_2_2_0/Vec2.html | 702 -
.../opengis/kml/v_2_2_0/ViewRefreshMode.html | 403 -
.../micromata/opengis/kml/v_2_2_0/ViewVolume.html | 1205 --
.../opengis/kml/v_2_2_0/annotations/Obvious.html | 169 -
.../kml/v_2_2_0/annotations/package-frame.html | 33 -
.../kml/v_2_2_0/annotations/package-summary.html | 158 -
.../kml/v_2_2_0/annotations/package-tree.html | 153 -
.../micromata/opengis/kml/v_2_2_0/atom/Author.html | 454 -
.../micromata/opengis/kml/v_2_2_0/atom/Link.html | 923 -
.../opengis/kml/v_2_2_0/atom/package-frame.html | 35 -
.../opengis/kml/v_2_2_0/atom/package-summary.html | 162 -
.../opengis/kml/v_2_2_0/atom/package-tree.html | 156 -
.../opengis/kml/v_2_2_0/gx/AnimatedUpdate.html | 717 -
.../de/micromata/opengis/kml/v_2_2_0/gx/FlyTo.html | 818 -
.../opengis/kml/v_2_2_0/gx/FlyToMode.html | 376 -
.../opengis/kml/v_2_2_0/gx/LatLonQuad.html | 712 -
.../micromata/opengis/kml/v_2_2_0/gx/PlayMode.html | 359 -
.../micromata/opengis/kml/v_2_2_0/gx/Playlist.html | 718 -
.../micromata/opengis/kml/v_2_2_0/gx/SoundCue.html | 505 -
.../de/micromata/opengis/kml/v_2_2_0/gx/Tour.html | 1074 --
.../opengis/kml/v_2_2_0/gx/TourControl.html | 505 -
.../opengis/kml/v_2_2_0/gx/TourPrimitive.html | 323 -
.../de/micromata/opengis/kml/v_2_2_0/gx/Wait.html | 505 -
.../opengis/kml/v_2_2_0/gx/package-frame.html | 62 -
.../opengis/kml/v_2_2_0/gx/package-summary.html | 208 -
.../opengis/kml/v_2_2_0/gx/package-tree.html | 181 -
.../opengis/kml/v_2_2_0/package-frame.html | 206 -
.../opengis/kml/v_2_2_0/package-summary.html | 497 -
.../opengis/kml/v_2_2_0/package-tree.html | 259 -
.../kml/v_2_2_0/xal/AddressDetails.Address.html | 625 -
.../AddressDetails.Country.CountryNameCode.html | 614 -
.../kml/v_2_2_0/xal/AddressDetails.Country.html | 1214 --
...ls.PostalServiceElements.AddressIdentifier.html | 703 -
...ails.PostalServiceElements.AddressLatitude.html | 614 -
...alServiceElements.AddressLatitudeDirection.html | 614 -
...ils.PostalServiceElements.AddressLongitude.html | 614 -
...lServiceElements.AddressLongitudeDirection.html | 614 -
...dressDetails.PostalServiceElements.Barcode.html | 614 -
....PostalServiceElements.EndorsementLineCode.html | 614 -
...sDetails.PostalServiceElements.KeyLineCode.html | 614 -
...sDetails.PostalServiceElements.SortingCode.html | 502 -
...iceElements.SupplementaryPostalServiceData.html | 614 -
.../xal/AddressDetails.PostalServiceElements.html | 1870 --
.../opengis/kml/v_2_2_0/xal/AddressDetails.html | 1863 --
.../opengis/kml/v_2_2_0/xal/AddressLine.html | 611 -
.../opengis/kml/v_2_2_0/xal/AddressLines.html | 582 -
.../AdministrativeArea.AdministrativeAreaName.html | 614 -
...ministrativeArea.SubAdministrativeAreaName.html | 614 -
.../AdministrativeArea.SubAdministrativeArea.html | 1328 --
.../kml/v_2_2_0/xal/AdministrativeArea.html | 1455 --
.../opengis/kml/v_2_2_0/xal/BuildingName.html | 700 -
.../opengis/kml/v_2_2_0/xal/CountryName.html | 611 -
.../kml/v_2_2_0/xal/Department.DepartmentName.html | 614 -
.../opengis/kml/v_2_2_0/xal/Department.html | 1087 --
.../DependentLocality.DependentLocalityName.html | 614 -
.../DependentLocality.DependentLocalityNumber.html | 614 -
.../opengis/kml/v_2_2_0/xal/DependentLocality.html | 2120 ---
.../opengis/kml/v_2_2_0/xal/Firm.FirmName.html | 614 -
.../de/micromata/opengis/kml/v_2_2_0/xal/Firm.html | 1230 --
.../xal/LargeMailUser.LargeMailUserIdentifier.html | 703 -
.../xal/LargeMailUser.LargeMailUserName.html | 614 -
.../opengis/kml/v_2_2_0/xal/LargeMailUser.html | 1598 --
.../kml/v_2_2_0/xal/Locality.LocalityName.html | 614 -
.../opengis/kml/v_2_2_0/xal/Locality.html | 1905 --
.../kml/v_2_2_0/xal/MailStop.MailStopName.html | 614 -
.../kml/v_2_2_0/xal/MailStop.MailStopNumber.html | 614 -
.../opengis/kml/v_2_2_0/xal/MailStop.html | 952 -
.../kml/v_2_2_0/xal/PostBox.PostBoxNumber.html | 525 -
.../xal/PostBox.PostBoxNumberExtension.html | 525 -
.../v_2_2_0/xal/PostBox.PostBoxNumberPrefix.html | 614 -
.../v_2_2_0/xal/PostBox.PostBoxNumberSuffix.html | 614 -
.../micromata/opengis/kml/v_2_2_0/xal/PostBox.html | 1509 --
.../kml/v_2_2_0/xal/PostOffice.PostOfficeName.html | 614 -