-
Notifications
You must be signed in to change notification settings - Fork 0
/
jmonkeyengine.arff
1587 lines (1585 loc) · 318 KB
/
jmonkeyengine.arff
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
@relation "jmonkeyengine"
@attribute iid numeric
@attribute enclosureType string
@attribute catchedType string
@attribute isFromArgument {true, false}
@attribute varNames string
@attribute varTypes string
@attribute constants string
@attribute methodNames string
@attribute methodExceptions string
@attribute otherExceptions string
@attribute classid{java.lang.NullPointerException,java.lang.RuntimeException,java.lang.IllegalStateException,java.lang.IllegalArgumentException,java.lang.UnsupportedOperationException,com.jme3.asset.AssetNotFoundException,com.jme3.asset.AssetLoadException,java.io.IOException,com.jme3.scene.plugins.blender.file.BlenderFileException,java.lang.AssertionError,java.lang.Exception,com.jme3.renderer.RendererException,org.xml.sax.SAXException,com.jme3.material.plugins.MatParseException,com.jme3.network.kernel.KernelException}
@data
0,"IfStatement","null",true,"source ","com.jme3.system.AppSettings ","NULL ","","","",java.lang.NullPointerException
1,"IfStatement","null",false,"app class ","java.lang.String ","NULL ","","","",java.lang.RuntimeException
2,"IfStatement","null",false,"","boolean ","","isInitialized ","","",java.lang.IllegalStateException
3,"IfStatement","null",false,"is ico is cur is ani ","boolean ","","","IOException ","",java.lang.IllegalArgumentException
4,"IfStatement","null",false,"riff ","int ","0x58464952 ","","IOException ","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
5,"IfStatement","null",false,"riff ","int ","0x58464952 ","","IOException ","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
6,"IfStatement","null",true,"icoimage ","byte ","","","IOException ","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
7,"IfStatement","null",true,"icoimage image offset ","int byte ","0x0a 0x50 0x47 0x4e 0x1a 0x0d 0x89 ","ubyte ","IOException ","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
8,"CatchClause","java.net.MalformedURLException",false,"url ","java.net.URL java.lang.StringBuilder java.lang.String ","","toString ","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
9,"CatchClause","java.io.IOException",false,"classpath url conn hash ","java.lang.StringBuilder java.net.URL int java.lang.String java.net.URLConnection java.net.MalformedURLException java.lang.Thread java.lang.UnsupportedOperationException long java.lang.System java.lang.ClassLoader ","java.class.path jar: com/jme3/system/NativeLibraryLoader.class ","delete toString length indexOf currentThread openConnection getProperty hashCode getResource getLastModified lastIndexOf ","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
10,"IfStatement","null",false,"","boolean com.jme3.system.JmeSystem ","","isLowPermissions ","","java.lang.UnsatisfiedLinkError java.lang.UnsatisfiedLinkError java.lang.UnsatisfiedLinkError java.lang.UnsatisfiedLinkError ",java.lang.UnsupportedOperationException
11,"IfStatement","null",false,"","boolean javax.swing.SwingUtilities ","","isEventDispatchThread ","","java.lang.IllegalStateException com.jme3.asset.AssetNotFoundException ",java.lang.IllegalStateException
12,"IfStatement","null",false,"","java.awt.GraphicsEnvironment boolean ","","isHeadless ","","java.lang.IllegalStateException com.jme3.asset.AssetNotFoundException ",java.lang.IllegalStateException
13,"IfStatement","null",false,"icon url ","java.net.URL ","NULL ","","","java.lang.IllegalStateException java.lang.IllegalStateException ",com.jme3.asset.AssetNotFoundException
14,"SwitchStatement","null",true,"type ","com.jme3.system.JmeContext.Type ","","","","",java.lang.IllegalArgumentException
15,"SwitchStatement","null",true,"type ","com.jme3.system.JmeContext.Type ","","","","",java.lang.IllegalArgumentException
16,"IfStatement","null",true,"settings ","com.jme3.system.AppSettings java.lang.String boolean ","CUSTOM ","getRenderer startsWith ","","",java.lang.UnsupportedOperationException
17,"IfStatement","null",true,"settings ","com.jme3.system.AppSettings java.lang.String boolean ","JOAL ","startsWith getAudioRenderer ","","",java.lang.UnsupportedOperationException
18,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalStateException
19,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalStateException
20,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalStateException
21,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalStateException
22,"IfStatement","null",true,"panel panels ","java.util.ArrayList com.jme3.system.awt.AwtPanel boolean ","","contains ","","",java.lang.IllegalArgumentException
23,"IfStatement","null",false,"actual context ","com.jme3.system.JmeContext ","NULL ","","","",java.lang.IllegalStateException
24,"IfStatement","null",false,"actual context ","com.jme3.system.JmeContext ","NULL ","","","",java.lang.IllegalStateException
25,"IfStatement","null",true,"out attach as main ","com.jme3.texture.FrameBuffer boolean ","","","","",java.lang.IllegalStateException
26,"IfStatement","null",false,"img ","com.jme3.texture.Image ","NULL ","","IOException ","com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
27,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo java.lang.String javax.imageio.ImageIO com.jme3.asset.AssetKey java.util.Iterator ","NULL ","getKey getImageReadersBySuffix getExtension ","IOException ","com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
28,"IfStatement","null",false,"","jme3tools.converters.ImageToAwt.DecodeParams ","NULL ","","","",java.lang.UnsupportedOperationException
29,"IfStatement","null",false,"in params out params ","jme3tools.converters.ImageToAwt.DecodeParams ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
30,"IfStatement","null",true,"height output width ","int com.jme3.texture.Image ","","getWidth getHeight ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
31,"IfStatement","null",false,"","jme3tools.converters.ImageToAwt.DecodeParams ","NULL ","","","",java.lang.UnsupportedOperationException
32,"IfStatement","null",true,"sky generated texture size ","int ","","","","",java.lang.IllegalArgumentException
33,"IfStatement","null",true,"sky generated texture shape ","com.jme3.asset.BlenderKey.SkyGeneratedTextureShape ","NULL ","","","",java.lang.IllegalArgumentException
34,"IfStatement","null",true,"feature data type old memory address feature ","java.lang.Object java.lang.Long com.jme3.scene.plugins.blender.BlenderContext.LoadedDataType ","NULL ","","","",java.lang.IllegalArgumentException
35,"MethodDeclaration","null",true,"entry bone ","com.jme3.animation.Bone java.lang.String java.util.Map.Entry com.jme3.scene.plugins.blender.animations.BoneContext boolean ","","getName getBone getValue equals ","","",java.lang.IllegalStateException
36,"IfStatement","null",true,"marker value ","java.lang.Object ","NULL ","","","",java.lang.IllegalArgumentException
37,"CatchClause","com.jme3.scene.plugins.blender.file.BlenderFileException",false,"background color images lights textures filters sky linked data meshes materials objects scenes ","com.jme3.scene.plugins.blender.BlenderLoader.LoadedFeatures com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.Node java.util.Map com.jme3.scene.plugins.blender.file.Structure java.lang.Object com.jme3.scene.plugins.blender.file.FileBlockHeader java.lang.String java.util.logging.Logger com.jme3.scene.plugins.blender.file.FileBlockHeader.BlockCode com.jme3.texture.Texture ","NULL objects scenes {0}: {1}--> {2} this materials textures type Creating the root node of the model and applying loaded nodes of the scene and loaded features to it. backgroundColor Loading scenes and attaching them to the root object. ","put add getHelper getStructure fine getName getParent getUsedWorld log getLight toFog ","IOException ","java.io.IOException ",java.io.IOException
38,"CatchClause","java.lang.Exception",false,"background color images lights textures filters sky linked data meshes materials objects scenes ","com.jme3.scene.plugins.blender.BlenderLoader.LoadedFeatures com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.Node java.util.Map com.jme3.scene.plugins.blender.file.Structure java.lang.Object com.jme3.scene.plugins.blender.file.FileBlockHeader java.lang.String java.util.logging.Logger com.jme3.scene.plugins.blender.file.FileBlockHeader.BlockCode com.jme3.texture.Texture ","NULL objects scenes {0}: {1}--> {2} this materials textures type Creating the root node of the model and applying loaded nodes of the scene and loaded features to it. backgroundColor Loading scenes and attaching them to the root object. ","put add getHelper getStructure fine getName getParent getUsedWorld log getLight toFog ","IOException ","java.io.IOException ",java.io.IOException
39,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalStateException
40,"IfStatement","null",true,"data type ","java.lang.String boolean ","Armature ","equalsIgnoreCase ","BlenderFileException ","",java.lang.IllegalArgumentException
41,"SwitchStatement","null",true,"space ","com.jme3.scene.plugins.blender.constraints.ConstraintHelper.Space ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
42,"SwitchStatement","null",true,"space ","com.jme3.scene.plugins.blender.constraints.ConstraintHelper.Space ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
43,"SwitchStatement","null",true,"space ","com.jme3.scene.plugins.blender.constraints.ConstraintHelper.Space ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
44,"SwitchStatement","null",true,"space ","com.jme3.scene.plugins.blender.constraints.ConstraintHelper.Space ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
45,"SwitchStatement","null",true,"space ","com.jme3.scene.plugins.blender.constraints.ConstraintHelper.Space ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
46,"SwitchStatement","null",true,"","byte ","","","","",java.lang.IllegalArgumentException
47,"IfStatement","null",true,"root node spatial ","com.jme3.scene.Node boolean ","NULL ","getParent ","","",java.lang.IllegalStateException
48,"IfStatement","null",false,"track ","com.jme3.animation.Track com.jme3.animation.SpatialTrack ","","","","",java.lang.IllegalStateException
49,"SwitchStatement","null",false,"flag ","int ","","","","",java.lang.IllegalStateException
50,"SwitchStatement","null",false,"mode ","int ","","","","",java.lang.IllegalStateException
51,"IfStatement","null",false,"owner ","java.lang.Object ","NULL ","","","",java.lang.IllegalStateException
52,"CatchClause","java.lang.IllegalArgumentException",true,"constraint name owner o m a blender context constraint structure def constraint definition class ","com.jme3.scene.plugins.blender.constraints.definitions.ConstraintDefinition com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure java.lang.Long java.lang.String java.lang.Class void java.lang.reflect.Constructor java.lang.Class ","","setConstraintName newInstance getDeclaredConstructors ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
53,"CatchClause","java.lang.SecurityException",true,"constraint name owner o m a blender context constraint structure def constraint definition class ","com.jme3.scene.plugins.blender.constraints.definitions.ConstraintDefinition com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure java.lang.Long java.lang.String java.lang.Class void java.lang.reflect.Constructor java.lang.Class ","","setConstraintName newInstance getDeclaredConstructors ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
54,"CatchClause","java.lang.InstantiationException",true,"constraint name owner o m a blender context constraint structure def constraint definition class ","com.jme3.scene.plugins.blender.constraints.definitions.ConstraintDefinition com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure java.lang.Long java.lang.String java.lang.Class void java.lang.reflect.Constructor java.lang.Class ","","setConstraintName newInstance getDeclaredConstructors ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
55,"CatchClause","java.lang.IllegalAccessException",true,"constraint name owner o m a blender context constraint structure def constraint definition class ","com.jme3.scene.plugins.blender.constraints.definitions.ConstraintDefinition com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure java.lang.Long java.lang.String java.lang.Class void java.lang.reflect.Constructor java.lang.Class ","","setConstraintName newInstance getDeclaredConstructors ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
56,"CatchClause","java.lang.reflect.InvocationTargetException",true,"constraint name owner o m a blender context constraint structure def constraint definition class ","com.jme3.scene.plugins.blender.constraints.definitions.ConstraintDefinition com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure java.lang.Long java.lang.String java.lang.Class void java.lang.reflect.Constructor java.lang.Class ","","setConstraintName newInstance getDeclaredConstructors ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
57,"IfStatement","null",false,"unsupported constraint class name ","java.lang.String ","NULL ","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
58,"IfStatement","null",false,"type_nurbs type ","int ","","","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
59,"IfStatement","null",true,"dimension ","int ","","","","",java.lang.IllegalArgumentException
60,"SwitchStatement","null",false,"interpolations ","int int ","","","","",java.lang.IllegalStateException
61,"IfStatement","null",false,"size ","int ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
62,"IfStatement","null",true,"total size length data ","int ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
63,"IfStatement","null",false,"size ","int ","","","BlenderFileException ","java.lang.IllegalStateException ",com.jme3.scene.plugins.blender.file.BlenderFileException
64,"SwitchStatement","null",false,"data type ","com.jme3.scene.plugins.blender.file.Structure.DataType ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",java.lang.IllegalStateException
65,"IfStatement","null",false,"table stop index ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
66,"CatchClause","java.lang.NumberFormatException",true,"name builder table start index table stop index lengths ","int java.lang.StringBuilder java.util.List java.lang.Integer java.lang.String boolean ","","valueOf substring add ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
67,"CatchClause","java.io.IOException",false,"buffered input stream ","java.io.BufferedInputStream void ","","readStreamToCache ","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
68,"CatchClause","java.io.IOException",false,"gis cached buffer ","java.util.zip.GZIPInputStream byte void java.io.ByteArrayInputStream ","","readStreamToCache ","","",java.lang.IllegalStateException
69,"IfStatement","null",false,"bytes read ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
70,"IfStatement","null",false,"str identifier ","java.lang.String boolean ","BLENDER ","equals ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
71,"IfStatement","null",false,"pointer size sign ","char ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
72,"IfStatement","null",false,"endianess ","char ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
73,"IfStatement","null",false,"bytes read ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
74,"IfStatement","null",true,"bytes amount ","int ","","","","",java.lang.IllegalArgumentException
75,"IfStatement","null",false,"fields amount ","int ","","","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
76,"IfStatement","null",false,"type ","java.lang.String boolean ","ListBase ","equals ","BlenderFileException ","",java.lang.IllegalStateException
77,"IfStatement","null",false,"old memory address ","java.lang.Long long ","","longValue ","","",java.lang.IllegalStateException
78,"MethodDeclaration","null",true,"result blender context type ","java.lang.String com.jme3.scene.plugins.blender.BlenderContext com.jme3.scene.plugins.blender.file.Structure.DataType boolean com.jme3.scene.plugins.blender.file.DnaBlockData ","NULL ","getDnaBlockData hasStructure ","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
79,"IfStatement","null",false,"identifier sdna_id ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
80,"IfStatement","null",false,"identifier name_id ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
81,"IfStatement","null",false,"amount ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
82,"IfStatement","null",false,"identifier type_id ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
83,"IfStatement","null",false,"amount ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
84,"IfStatement","null",false,"identifier tlen_id ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
85,"IfStatement","null",false,"identifier strc_id ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
86,"IfStatement","null",false,"amount ","int ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
87,"IfStatement","null",false,"structures structures map ","int com.jme3.scene.plugins.blender.file.Structure java.util.Map java.lang.String boolean ","","containsKey getType ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
88,"CatchClause","java.lang.CloneNotSupportedException",true,"index structures ","int com.jme3.scene.plugins.blender.file.Structure java.lang.Object com.jme3.scene.plugins.blender.file.Structure ","","clone ","","",java.lang.IllegalStateException
89,"CatchClause","java.lang.CloneNotSupportedException",true,"name structures map ","java.lang.String com.jme3.scene.plugins.blender.file.Structure java.util.Map java.lang.Object ","","get clone ","","",java.lang.IllegalStateException
90,"IfStatement","null",false,"old memory address ","long ","","","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",java.lang.NullPointerException
91,"IfStatement","null",false,"data file block ","com.jme3.scene.plugins.blender.file.FileBlockHeader ","NULL ","","BlenderFileException ","java.lang.NullPointerException ",com.jme3.scene.plugins.blender.file.BlenderFileException
92,"IfStatement","null",false,"loaded textures ","java.util.List int ","","size ","BlenderFileException ","",java.lang.IllegalStateException
93,"SwitchStatement","null",false,"type ","int ","","","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
94,"SwitchStatement","null",true,"diffuse shader ","com.jme3.scene.plugins.blender.materials.MaterialHelper.DiffuseShader ","","","","",java.lang.IllegalStateException
95,"MethodDeclaration","null",false,"","","","","IOException ","",java.io.IOException
96,"MethodDeclaration","null",false,"","","","","IOException ","",java.io.IOException
97,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.scene.plugins.blender.math.Vector3d ","","","","",java.lang.AssertionError
98,"CatchClause","java.lang.CloneNotSupportedException",false,"rotation scale translation ","com.jme3.scene.plugins.blender.math.DTransform com.jme3.scene.plugins.blender.math.Vector3d com.jme3.scene.plugins.blender.math.DQuaternion java.lang.Object ","","clone ","","",java.lang.AssertionError
99,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.scene.plugins.blender.math.DQuaternion ","","","","",java.lang.AssertionError
100,"MethodDeclaration","null",true,"index index2 index1 ","int ","","","","",java.lang.IllegalArgumentException
101,"IfStatement","null",true,"result node ","java.util.List java.lang.Integer boolean ","","contains ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
102,"IfStatement","null",false,"next steps ","java.util.List int ","","size ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",com.jme3.scene.plugins.blender.file.BlenderFileException
103,"IfStatement","null",true,"length triangle indexes ","int java.lang.Integer ","","","BlenderFileException ","java.lang.IllegalStateException ",java.lang.IllegalArgumentException
104,"IfStatement","null",false,"path ","java.util.List int ","","size ","BlenderFileException ","java.lang.IllegalArgumentException ",java.lang.IllegalStateException
105,"IfStatement","null",true,"temporal mesh ","com.jme3.scene.plugins.blender.meshes.TemporalMesh ","NULL ","","","",java.lang.IllegalArgumentException
106,"IfStatement","null",false,"distinct crossing vectors ","java.util.List int ","","size ","","",java.lang.IllegalStateException
107,"IfStatement","null",true,"normals length verts ","com.jme3.math.Vector3f int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
108,"IfStatement","null",true,"vert colors length verts ","int byte com.jme3.math.Vector3f ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
109,"IfStatement","null",true,"vertex groups length verts ","int java.util.List com.jme3.math.Vector3f ","","size ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
110,"IfStatement","null",false,"bounding volume ","com.jme3.bounding.BoundingVolume com.jme3.bounding.BoundingSphere ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
111,"IfStatement","null",false,"fittype ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
112,"IfStatement","null",false,"fittype ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
113,"SwitchStatement","null",false,"sub type ","int ","","","BlenderFileException ","java.lang.UnsupportedOperationException java.lang.IllegalStateException ",java.lang.IllegalStateException
114,"SwitchStatement","null",false,"type ","int ","","","BlenderFileException ","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.UnsupportedOperationException
115,"SwitchStatement","null",false,"type ","int ","","","BlenderFileException ","java.lang.IllegalStateException java.lang.UnsupportedOperationException ",java.lang.IllegalStateException
116,"MethodDeclaration","null",true,"blender type value type ","int com.jme3.scene.plugins.blender.objects.ObjectHelper.ObjectType ","","","BlenderFileException ","",com.jme3.scene.plugins.blender.file.BlenderFileException
117,"IfStatement","null",true,"colors ","java.util.List int ","NULL ","size ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
118,"IfStatement","null",true,"ipo_linear ipo type ipo_constant ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
119,"IfStatement","null",true,"colors positions ","java.util.List int java.util.List ","NULL ","size ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
120,"IfStatement","null",true,"result size position ","int java.lang.Integer ","","intValue ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
121,"SwitchStatement","null",false,"ipo type ","int ","","","","",java.lang.IllegalStateException
122,"IfStatement","null",false,"ipo_cardinal ipo type ","int com.jme3.scene.plugins.blender.textures.ColorBand ","","","","",java.lang.IllegalStateException
123,"SwitchStatement","null",true,"texco ","com.jme3.scene.plugins.blender.textures.UVCoordinatesGenerator.UVCoordinatesType ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
124,"SwitchStatement","null",true,"projection ","com.jme3.scene.plugins.blender.textures.UVProjectionGenerator.UVProjectionType ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
125,"SwitchStatement","null",true,"texco ","com.jme3.scene.plugins.blender.textures.UVCoordinatesGenerator.UVCoordinatesType ","","","","",java.lang.IllegalStateException
126,"SwitchStatement","null",true,"texco ","com.jme3.scene.plugins.blender.textures.UVCoordinatesGenerator.UVCoordinatesType ","","","","",java.lang.IllegalStateException
127,"IfStatement","null",false,"","com.jme3.bounding.BoundingVolume com.jme3.bounding.BoundingSphere ","","","","",java.lang.IllegalStateException
128,"IfStatement","null",false,"","com.jme3.bounding.BoundingVolume com.jme3.bounding.BoundingSphere ","","","","",java.lang.IllegalStateException
129,"SwitchStatement","null",false,"type ","int ","","","BlenderFileException ","java.lang.IllegalStateException ",com.jme3.scene.plugins.blender.file.BlenderFileException
130,"SwitchStatement","null",true,"blender context ","com.jme3.scene.plugins.blender.BlenderContext com.jme3.asset.BlenderKey com.jme3.asset.BlenderKey.MipmapGenerationMethod ","","getMipmapGenerationMethod getBlenderKey ","BlenderFileException ","com.jme3.scene.plugins.blender.file.BlenderFileException ",java.lang.IllegalStateException
131,"IfStatement","null",true,"max y min y ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
132,"IfStatement","null",true,"min x max x ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
133,"IfStatement","null",true,"image ","com.jme3.texture.Image int java.util.List ","","getData size ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
134,"SwitchStatement","null",true,"blender context ","com.jme3.scene.plugins.blender.BlenderContext com.jme3.asset.BlenderKey com.jme3.asset.BlenderKey.MipmapGenerationMethod ","","getMipmapGenerationMethod getBlenderKey ","","",java.lang.IllegalStateException
135,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getDepth ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
136,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getWidth ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
137,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getHeight ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
138,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getDepth ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
139,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getWidth ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
140,"IfStatement","null",true,"source image target image ","com.jme3.texture.Image int ","","getHeight ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
141,"SwitchStatement","null",false,"format ","com.jme3.texture.Image.Format ","","","","",java.lang.IllegalStateException
142,"IfStatement","null",true,"texture ","com.jme3.texture.Texture com.jme3.texture.Texture2D com.jme3.scene.plugins.blender.textures.GeneratedTexture ","","","","",java.lang.IllegalArgumentException
143,"IfStatement","null",true,"texture ","com.jme3.texture.Texture com.jme3.texture.Texture2D ","","","","",java.lang.IllegalArgumentException
144,"SwitchStatement","null",false,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","",java.lang.IllegalStateException
145,"IfStatement","null",false,"image format face texture element ","com.jme3.texture.Image.Format com.jme3.scene.plugins.blender.textures.TriangulatedTexture.TriangleTextureElement com.jme3.texture.Image ","","getFormat ","","",java.lang.IllegalArgumentException
146,"IfStatement","null",false,"triangle texture element image new format ","com.jme3.texture.Image.Format com.jme3.scene.plugins.blender.textures.TriangulatedTexture.TriangleTextureElement com.jme3.texture.Image ","","getFormat ","","",java.lang.IllegalArgumentException
147,"MethodDeclaration","null",true,"texture element face index ","int com.jme3.scene.plugins.blender.textures.TriangulatedTexture.TriangleTextureElement ","","","","",java.lang.IllegalStateException
148,"SwitchStatement","null",true,"type ","int ","","","","",java.lang.IllegalStateException
149,"SwitchStatement","null",true,"image format ","com.jme3.texture.Image.Format ","","","","",java.lang.IllegalStateException
150,"SwitchStatement","null",true,"blendtype ","int ","","","","",java.lang.IllegalStateException
151,"SwitchStatement","null",false,"blend type ","int ","","","","",java.lang.IllegalStateException
152,"IfStatement","null",false,"musgrave function ","com.jme3.scene.plugins.blender.textures.generating.NoiseGenerator.MusgraveFunction ","NULL ","","","",java.lang.IllegalStateException
153,"SwitchStatement","null",true,"generated texture ","int ","","","","",java.lang.IllegalStateException
154,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","",java.lang.IllegalStateException
155,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","",java.lang.IllegalStateException
156,"SwitchStatement","null",true,"format ","com.jme3.texture.Image.Format ","","","","",java.lang.IllegalStateException
157,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
158,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
159,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
160,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
161,"SwitchStatement","null",true,"image ","com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat ","","",java.lang.IllegalStateException
162,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
163,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
164,"SwitchStatement","null",false,"threading type ","com.jme3.bullet.BulletAppState.ThreadingType ","","","","",java.lang.IllegalStateException
165,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
166,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
167,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
168,"IfStatement","null",false,"","com.jme3.animation.SkeletonControl ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
169,"IfStatement","null",false,"bone list ","java.util.Set boolean ","","isEmpty ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
170,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
171,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
172,"IfStatement","null",false,"unit_y_check unit_xyz_check zero unit_z unit_y unit_xyz unit_x unit_x_check zero_check unit_z_check ","com.jme3.math.Vector3f boolean ","","equals ","","",java.lang.IllegalStateException
173,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial com.jme3.scene.Node ","","","","",java.lang.IllegalArgumentException
174,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial com.jme3.scene.Node ","","","","",java.lang.IllegalArgumentException
175,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial com.jme3.scene.Node ","","","","",java.lang.IllegalArgumentException
176,"CatchClause","java.lang.ReflectiveOperationException",true,"model transform class joint ","com.jme3.anim.Joint java.lang.Class java.lang.Class void ","","setJointModelTransform newInstance ","","",java.lang.IllegalArgumentException
177,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.Armature java.lang.Object ","","","","",java.lang.AssertionError
178,"CatchClause","java.lang.ClassNotFoundException",false,"model transform class class name ","java.lang.Class java.lang.String java.lang.Class com.jme3.anim.util.JointModelTransform java.lang.Class ","","forName ","IOException ","",com.jme3.asset.AssetLoadException
179,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
180,"IfStatement","null",true,"anim clip map anim ","java.util.Map com.jme3.anim.AnimClip java.lang.String boolean ","","getName containsKey ","","",java.lang.IllegalArgumentException
181,"IfStatement","null",false,"","com.jme3.anim.AnimComposer.Layer ","NULL ","","","",java.lang.IllegalArgumentException
182,"IfStatement","null",false,"clip ","com.jme3.anim.AnimClip ","NULL ","","","",java.lang.IllegalArgumentException
183,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.AnimComposer java.lang.Object ","","","","",java.lang.AssertionError
184,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.AnimComposer.Layer java.lang.Object ","","","","",java.lang.AssertionError
185,"IfStatement","null",false,"joint ","com.jme3.anim.Joint ","NULL ","","","",java.lang.IllegalArgumentException
186,"IfStatement","null",true,"length times ","int float ","","","","",java.lang.RuntimeException
187,"IfStatement","null",true,"times ","float ","NULL ","","","",java.lang.RuntimeException
188,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.MorphTrack java.lang.Object ","","","","",java.lang.AssertionError
189,"IfStatement","null",true,"armature ","com.jme3.anim.Armature ","NULL ","","","",java.lang.IllegalArgumentException
190,"IfStatement","null",false,"","com.jme3.anim.Joint ","NULL ","","","",java.lang.IllegalArgumentException
191,"IfStatement","null",false,"max weights per vert ","int ","","","","",java.lang.IllegalStateException
192,"IfStatement","null",false,"max weights per vert ","int ","","","","",java.lang.IllegalStateException
193,"IfStatement","null",true,"length times ","int float ","","","","",java.lang.RuntimeException
194,"IfStatement","null",false,"times ","float ","NULL ","","","java.lang.RuntimeException ",java.lang.RuntimeException
195,"IfStatement","null",true,"translations length ","com.jme3.math.Vector3f int ","","","","java.lang.RuntimeException ",java.lang.RuntimeException
196,"IfStatement","null",false,"times ","float ","NULL ","","","java.lang.RuntimeException ",java.lang.RuntimeException
197,"IfStatement","null",true,"length scales ","com.jme3.math.Vector3f int ","","","","java.lang.RuntimeException ",java.lang.RuntimeException
198,"IfStatement","null",false,"times ","float ","NULL ","","","java.lang.RuntimeException ",java.lang.RuntimeException
199,"IfStatement","null",true,"rotations length ","com.jme3.math.Quaternion int ","","","","java.lang.RuntimeException ",java.lang.RuntimeException
200,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.TransformTrack java.lang.Object ","","","","",java.lang.AssertionError
201,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.anim.Joint java.lang.Object ","","","","",java.lang.AssertionError
202,"IfStatement","null",true,"target ","java.lang.Object ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
203,"IfStatement","null",false,"method ","java.lang.reflect.Method ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
204,"CatchClause","java.lang.IllegalAccessException",false,"args target method ","java.lang.Object java.lang.reflect.Method java.lang.Object ","","invoke ","","java.lang.RuntimeException ",java.lang.RuntimeException
205,"CatchClause","java.lang.reflect.InvocationTargetException",false,"args target method ","java.lang.Object java.lang.reflect.Method java.lang.Object ","","invoke ","","java.lang.RuntimeException ",java.lang.RuntimeException
206,"IfStatement","null",true,"target ","java.lang.Object ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
207,"IfStatement","null",false,"method ","java.lang.reflect.Method ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
208,"CatchClause","java.lang.IllegalAccessException",true,"is float args t index target method ","java.lang.Object int double java.lang.Object boolean java.lang.reflect.Method ","","invoke ","","java.lang.RuntimeException ",java.lang.RuntimeException
209,"CatchClause","java.lang.reflect.InvocationTargetException",true,"is float args t index target method ","java.lang.Object int double java.lang.Object boolean java.lang.reflect.Method ","","invoke ","","java.lang.RuntimeException ",java.lang.RuntimeException
210,"IfStatement","null",true,"type ","java.lang.Class ","NULL ","","","",java.lang.IllegalArgumentException
211,"IfStatement","null",true,"skeleton ","com.jme3.animation.Skeleton ","NULL ","","","",java.lang.IllegalArgumentException
212,"IfStatement","null",false,"","com.jme3.animation.Bone ","NULL ","","","",java.lang.IllegalArgumentException
213,"IfStatement","null",false,"max weights per vert ","int ","","","","",java.lang.IllegalStateException
214,"IfStatement","null",false,"max weights per vert ","int ","","","","",java.lang.IllegalStateException
215,"IfStatement","null",true,"name ","java.lang.String ","NULL ","","","",java.lang.IllegalArgumentException
216,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.animation.Bone java.lang.Object ","","","","",java.lang.AssertionError
217,"IfStatement","null",false,"user control ","boolean ","","","","",java.lang.IllegalStateException
218,"IfStatement","null",false,"user control ","boolean ","","","","",java.lang.IllegalStateException
219,"IfStatement","null",false,"user control ","boolean ","","","","",java.lang.IllegalStateException
220,"IfStatement","null",false,"user control ","boolean ","","","","",java.lang.IllegalStateException
221,"IfStatement","null",false,"user control ","boolean ","","","","",java.lang.IllegalStateException
222,"IfStatement","null",false,"index pool ","java.util.Map boolean ","","isEmpty ","","",java.lang.RuntimeException
223,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
224,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial com.jme3.effect.ParticleEmitter ","","","","",java.lang.IllegalArgumentException
225,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
226,"CatchClause","java.lang.CloneNotSupportedException",false,"result weights length poses ","int com.jme3.animation.Pose com.jme3.animation.PoseTrack.PoseFrame float com.jme3.animation.Pose java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
227,"CatchClause","java.lang.CloneNotSupportedException",false,"result length frames times ","int com.jme3.animation.PoseTrack.PoseFrame com.jme3.animation.PoseTrack float com.jme3.animation.PoseTrack.PoseFrame java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
228,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
229,"IfStatement","null",true,"length times ","int float ","","","","",java.lang.RuntimeException
230,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.animation.BoneTrack ","","","","",java.lang.RuntimeException
231,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
232,"IfStatement","null",true,"name ","java.lang.String ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
233,"IfStatement","null",true,"blend time ","float ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
234,"IfStatement","null",false,"anim ","com.jme3.animation.Animation ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
235,"IfStatement","null",true,"length times ","int float ","","","","",java.lang.RuntimeException
236,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.animation.SpatialTrack ","","","","",java.lang.RuntimeException
237,"CatchClause","java.lang.CloneNotSupportedException",false,"result track tracks ","com.jme3.animation.Animation com.jme3.animation.Track com.jme3.util.SafeArrayList java.lang.Object boolean ","","add clone ","","",java.lang.AssertionError
238,"CatchClause","java.lang.CloneNotSupportedException",true,"result track tracks spat ","com.jme3.animation.Animation com.jme3.animation.Track com.jme3.util.SafeArrayList boolean com.jme3.scene.Spatial com.jme3.animation.ClonableTrack java.lang.Object ","","add cloneForSpatial ","","",java.lang.AssertionError
239,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
240,"CatchClause","java.lang.CloneNotSupportedException",false,"result length offsets indices ","int com.jme3.math.Vector3f com.jme3.animation.Pose int com.jme3.math.Vector3f java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
241,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.animation.Skeleton java.lang.Object ","","","","",java.lang.AssertionError
242,"IfStatement","null",true,"anim animation map ","com.jme3.animation.Animation java.util.HashMap java.lang.String boolean ","","getName containsKey ","","",java.lang.IllegalArgumentException
243,"IfStatement","null",true,"listeners listener ","java.util.ArrayList com.jme3.animation.AnimEventListener boolean ","","contains ","","",java.lang.IllegalArgumentException
244,"IfStatement","null",true,"listeners listener ","java.util.ArrayList com.jme3.animation.AnimEventListener boolean ","","remove ","","",java.lang.IllegalArgumentException
245,"IfStatement","null",false,"","com.jme3.animation.Animation ","NULL ","","","",java.lang.IllegalArgumentException
246,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
247,"IfStatement","null",false,"gui node ","com.jme3.scene.Node ","NULL ","","","",java.lang.RuntimeException
248,"IfStatement","null",true,"asset manager ","com.jme3.asset.AssetManager ","NULL ","","","",java.lang.IllegalStateException
249,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
250,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
251,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
252,"IfStatement","null",false,"spatial ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.IllegalArgumentException
253,"IfStatement","null",false,"colon ","java.lang.String boolean ","","equals ","IOException ","java.io.IOException ",java.io.IOException
254,"IfStatement","null",false,"cmd ","java.lang.String boolean ","","trim startsWith ","IOException ","java.io.IOException ",java.io.IOException
255,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.asset.AssetKey ","","","","",java.lang.AssertionError
256,"IfStatement","null",false,"already opened ","boolean ","","","","",java.lang.IllegalStateException
257,"IfStatement","null",false,"local ","com.jme3.asset.ImplHandler.ImplThreadLocal ","NULL ","","","",com.jme3.asset.AssetLoadException
258,"CatchClause","java.lang.InstantiationException",true,"cache class to cache map cache class ","java.lang.Class java.util.concurrent.ConcurrentHashMap com.jme3.asset.cache.AssetCache ","","newInstance put ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
259,"CatchClause","java.lang.IllegalAccessException",true,"cache class to cache map cache class ","java.lang.Class java.util.concurrent.ConcurrentHashMap com.jme3.asset.cache.AssetCache ","","newInstance put ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
260,"CatchClause","java.lang.InstantiationException",true,"proc class proc class to proc map ","java.lang.Class java.util.concurrent.ConcurrentHashMap com.jme3.asset.AssetProcessor ","","newInstance put ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
261,"CatchClause","java.lang.IllegalAccessException",true,"proc class proc class to proc map ","java.lang.Class java.util.concurrent.ConcurrentHashMap com.jme3.asset.AssetProcessor ","","newInstance put ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
262,"IfStatement","null",false,"cache ","com.jme3.asset.cache.AssetCache ","NULL ","","","",java.lang.IllegalArgumentException
263,"IfStatement","null",false,"cache ","com.jme3.asset.cache.AssetCache ","NULL ","","","",java.lang.IllegalArgumentException
264,"IfStatement","null",false,"cache ","com.jme3.asset.cache.AssetCache ","NULL ","","","",java.lang.IllegalArgumentException
265,"CatchClause","java.io.IOException",true,"loader key handler info obj ","java.lang.Object com.jme3.asset.AssetLoader com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.ImplHandler void ","","establishParentKey load ","","com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
266,"IfStatement","null",false,"obj ","java.lang.Object ","NULL ","","","com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
267,"IfStatement","null",true,"proc ","com.jme3.asset.AssetProcessor ","NULL ","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
268,"IfStatement","null",true,"cache obj clone ","com.jme3.asset.cache.AssetCache ","NULL ","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
269,"IfStatement","null",true,"key ","com.jme3.asset.AssetKey ","NULL ","","","",java.lang.IllegalArgumentException
270,"IfStatement","null",true,"key ","com.jme3.asset.AssetKey ","NULL ","","","com.jme3.asset.AssetNotFoundException ",java.lang.IllegalArgumentException
271,"IfStatement","null",false,"info ","com.jme3.asset.AssetInfo ","NULL ","","","java.lang.IllegalArgumentException ",com.jme3.asset.AssetNotFoundException
272,"IfStatement","null",false,"load stack ","java.util.ArrayList boolean ","","isEmpty ","","",java.lang.UnsupportedOperationException
273,"IfStatement","null",false,"load stack ","java.util.ArrayList boolean ","","isEmpty ","","",java.lang.UnsupportedOperationException
274,"IfStatement","null",true,"high freq volume ","float ","","","","",java.lang.IllegalArgumentException
275,"IfStatement","null",true,"volume ","float ","","","","",java.lang.IllegalArgumentException
276,"IfStatement","null",false,"","int ","","","","",java.lang.IllegalStateException
277,"IfStatement","null",false,"result ","com.jme3.audio.AudioRenderer ","NULL ","","","",java.lang.IllegalStateException
278,"IfStatement","null",false,"data positional ","com.jme3.audio.AudioData boolean int ","","getChannels ","","",java.lang.IllegalStateException
279,"IfStatement","null",false,"data positional ","com.jme3.audio.AudioData boolean int ","","getChannels ","","",java.lang.IllegalStateException
280,"IfStatement","null",false,"status stopped ","com.jme3.audio.AudioSource.Status com.jme3.audio.AudioSource ","","","","",java.lang.IllegalStateException
281,"IfStatement","null",false,"data ","com.jme3.audio.AudioData ","NULL ","","","",java.lang.IllegalStateException
282,"IfStatement","null",true,"pitch ","float ","2.0f 0.5f ","","","",java.lang.IllegalArgumentException
283,"IfStatement","null",true,"volume ","float ","","","","",java.lang.IllegalArgumentException
284,"IfStatement","null",true,"time offset ","float ","","","","",java.lang.IllegalArgumentException
285,"IfStatement","null",true,"max distance ","float ","","","","",java.lang.IllegalArgumentException
286,"IfStatement","null",true,"ref distance ","float ","","","","",java.lang.IllegalArgumentException
287,"IfStatement","null",true,"","java.io.InputStream int ","NULL ","","","",java.lang.IllegalStateException
288,"MethodDeclaration","null",false,"","","","","","",java.lang.RuntimeException
289,"MethodDeclaration","null",false,"","","","","","",java.lang.RuntimeException
290,"IfStatement","null",false,"open ","java.io.InputStream boolean ","NULL ","","","",java.lang.RuntimeException
291,"IfStatement","null",false,"","java.io.InputStream com.jme3.audio.SeekableStream ","","","","",java.lang.IllegalStateException
292,"IfStatement","null",true,"length ","int float ","","","","",java.lang.IllegalArgumentException
293,"IfStatement","null",false,"decoder thread ","java.lang.Thread boolean ","","isAlive ","","",java.lang.IllegalStateException
294,"IfStatement","null",false,"decoder thread terminated ","java.lang.Thread.State java.lang.Thread ","","getState ","","",java.lang.IllegalStateException
295,"IfStatement","null",true,"","com.jme3.audio.Filter com.jme3.audio.LowPassFilter ","","","","",java.lang.UnsupportedOperationException
296,"IfStatement","null",true,"active stream ","boolean com.jme3.audio.AudioStream ","","isEOF ","","java.lang.IllegalStateException ",java.lang.AssertionError
297,"IfStatement","null",false,"active ","boolean ","","","","java.lang.AssertionError ",java.lang.IllegalStateException
298,"IfStatement","null",true,"active stream ","boolean com.jme3.audio.AudioStream ","","isEOF ","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.AssertionError
299,"IfStatement","null",false,"active ","boolean ","","","","java.lang.AssertionError java.lang.IllegalStateException ",java.lang.IllegalStateException
300,"IfStatement","null",false,"success ","boolean ","","","","java.lang.AssertionError java.lang.IllegalStateException ",java.lang.IllegalStateException
301,"IfStatement","null",true,"data ","com.jme3.audio.AudioData com.jme3.audio.AudioStream ","","","","",java.lang.UnsupportedOperationException
302,"SwitchStatement","null",true,"oal status ","int ","","","","",java.lang.UnsupportedOperationException
303,"IfStatement","null",false,"paused oal status ","com.jme3.audio.AudioSource.Status ","","","","java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
304,"IfStatement","null",false,"playing stopped oal status jme status ","com.jme3.audio.AudioSource.Status ","","","","java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
305,"IfStatement","null",false,"stopped oal status ","com.jme3.audio.AudioSource.Status ","","","","java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
306,"IfStatement","null",false,"playing oal status jme status ","com.jme3.audio.AudioSource.Status ","","","","",java.lang.AssertionError
307,"IfStatement","null",false,"support pause device ","boolean ","","","","",java.lang.UnsupportedOperationException
308,"IfStatement","null",false,"support pause device ","boolean ","","","","",java.lang.UnsupportedOperationException
309,"IfStatement","null",true,"src ","com.jme3.audio.AudioSource com.jme3.audio.AudioData com.jme3.audio.AudioStream ","","getAudioData ","","",java.lang.UnsupportedOperationException
310,"MethodDeclaration","null",true,"","com.jme3.audio.AudioData int ","","getChannels ","","",java.lang.UnsupportedOperationException
311,"IfStatement","null",false,"err al_no_error ","int ","","","","",java.lang.RuntimeException
312,"IfStatement","null",true,"x extent ","float ","","","","",java.lang.IllegalArgumentException
313,"IfStatement","null",true,"y extent ","float ","","","","",java.lang.IllegalArgumentException
314,"IfStatement","null",true,"z extent ","float ","","","","",java.lang.IllegalArgumentException
315,"CatchClause","java.lang.CloneNotSupportedException",false,"center clone ","com.jme3.bounding.BoundingVolume com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
316,"IfStatement","null",true,"camera name cameras ","java.lang.String java.util.Map boolean ","","containsKey ","","",java.lang.IllegalArgumentException
317,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
318,"IfStatement","null",false,"model ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.UnsupportedOperationException
319,"IfStatement","null",true,"max tris per node ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
320,"IfStatement","null",true,"mesh ","com.jme3.scene.Mesh ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
321,"IfStatement","null",false,"v buffer ","com.jme3.scene.VertexBuffer ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
322,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
323,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
324,"SwitchStatement","null",false,"mesh type ","com.jme3.effect.ParticleMesh.Type ","","","","",java.lang.IllegalStateException
325,"SwitchStatement","null",false,"mesh type ","com.jme3.effect.ParticleMesh.Type ","","","","",java.lang.IllegalStateException
326,"SwitchStatement","null",true,"mesh type ","com.jme3.effect.ParticleMesh.Type ","","","","",java.lang.IllegalStateException
327,"SwitchStatement","null",false,"mesh type ","com.jme3.effect.ParticleMesh.Type ","","","IOException ","",java.lang.IllegalStateException
328,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.effect.influencers.ParticleInfluencer ","","","","",java.lang.AssertionError
329,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
330,"CatchClause","java.lang.CloneNotSupportedException",false,"initial velocity clone ","com.jme3.effect.influencers.DefaultParticleInfluencer com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
331,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
332,"IfStatement","null",true,"center ","com.jme3.math.Vector3f ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
333,"IfStatement","null",true,"radius ","float ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
334,"CatchClause","java.lang.CloneNotSupportedException",false,"center clone ","com.jme3.effect.shapes.EmitterSphereShape com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
335,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
336,"CatchClause","java.lang.CloneNotSupportedException",false,"vector vertices normals vector list list clone ","java.util.List java.util.List com.jme3.math.Vector3f com.jme3.effect.shapes.EmitterMeshVertexShape int boolean java.util.ArrayList java.util.ArrayList java.lang.Object ","NULL ","size add clone ","","",java.lang.AssertionError
337,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
338,"CatchClause","java.lang.CloneNotSupportedException",false,"point clone ","com.jme3.effect.shapes.EmitterPointShape com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
339,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
340,"IfStatement","null",true,"max min ","com.jme3.math.Vector3f ","NULL ","","","",java.lang.IllegalArgumentException
341,"CatchClause","java.lang.CloneNotSupportedException",false,"len min clone ","com.jme3.effect.shapes.EmitterBoxShape com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
342,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
343,"IfStatement","null",true,"probe ","com.jme3.light.LightProbe boolean ","","isReady ","","",java.lang.UnsupportedOperationException
344,"IfStatement","null",true,"nb mip map length source env map ","int com.jme3.texture.TextureCubeMap com.jme3.texture.Image int boolean ","","getImage hasMipmaps getMipMapSizes ","","java.lang.Exception ",java.lang.IllegalArgumentException
345,"CatchClause","java.lang.Exception",true,"pem out color nb mip map mip level length store face nb samples ","int com.jme3.math.Vector3f com.jme3.texture.TextureCubeMap float com.jme3.environment.util.CubeMapWrapper com.jme3.math.ColorRGBA java.lang.Math void com.jme3.texture.Image com.jme3.environment.util.EnvMapUtils.FixSeamsMethod int ","0.0001f mip maps The input cube map must have at least ","max getImage set getMipMapSizes progress prefilterEnvMapTexel getVectorFromCubemapFaceTexCoord setPixel setEnd getSampleFromMip getRoughnessFromMip ","","java.lang.IllegalArgumentException ",java.lang.Exception
346,"IfStatement","null",true,"store ","com.jme3.math.Vector3f ","NULL ","","","",java.lang.IllegalArgumentException
347,"IfStatement","null",true,"cube map ","com.jme3.texture.TextureCubeMap java.nio.ByteBuffer com.jme3.texture.Image ","NULL ","getData getImage ","","",java.lang.IllegalStateException
348,"IfStatement","null",false,"mip map raster ","com.jme3.texture.image.MipMapImageRaster ","NULL ","","","",java.lang.IllegalArgumentException
349,"IfStatement","null",false,"mip map raster ","com.jme3.texture.image.MipMapImageRaster ","NULL ","","","",java.lang.IllegalArgumentException
350,"IfStatement","null",false,"mip map raster ","com.jme3.texture.image.MipMapImageRaster ","NULL ","","","",java.lang.IllegalArgumentException
351,"IfStatement","null",false,"mip map raster ","com.jme3.texture.image.MipMapImageRaster ","NULL ","","","",java.lang.IllegalArgumentException
352,"IfStatement","null",true,"max mip map nb mip maps ","int ","","","","",java.lang.IllegalArgumentException
353,"CatchClause","java.lang.IllegalAccessException",true,"declaring class clazz field ","java.lang.reflect.Field java.lang.Class java.lang.Class com.jme3.export.Savable java.lang.Class int ","NULL SAVABLE_VERSION ","getInt getField getDeclaringClass ","IOException ","java.lang.IllegalArgumentException ",java.io.IOException
354,"CatchClause","java.lang.IllegalArgumentException",true,"declaring class clazz field ","java.lang.reflect.Field java.lang.Class java.lang.Class com.jme3.export.Savable java.lang.Class int ","NULL SAVABLE_VERSION ","getInt getField getDeclaringClass ","IOException ","java.io.IOException ",java.lang.IllegalArgumentException
355,"IfStatement","null",false,"this class ","java.lang.Class ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
356,"IfStatement","null",true,"format version ","int ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
357,"CatchClause","java.lang.CloneNotSupportedException",false,"kerning result ","com.jme3.font.BitmapCharacter com.jme3.util.IntMap java.lang.Object ","","clone ","","",java.lang.AssertionError
358,"IfStatement","null",true,"rendered size style set ","int com.jme3.font.BitmapCharacterSet ","","","","java.lang.RuntimeException java.lang.RuntimeException ",java.lang.RuntimeException
359,"IfStatement","null",false,"style ","int ","","","","java.lang.RuntimeException java.lang.RuntimeException ",java.lang.RuntimeException
360,"IfStatement","null",false,"old ","com.jme3.util.IntMap ","NULL ","","","java.lang.RuntimeException java.lang.RuntimeException ",java.lang.RuntimeException
361,"IfStatement","null",false,"characters ","com.jme3.util.IntMap int ","","size ","","",java.lang.RuntimeException
362,"IfStatement","null",true,"left block align ","com.jme3.font.BitmapFont.Align com.jme3.font.StringBlock com.jme3.font.Rectangle ","NULL ","getTextBox ","","",java.lang.RuntimeException
363,"IfStatement","null",true,"top block align ","com.jme3.font.BitmapFont.VAlign com.jme3.font.StringBlock com.jme3.font.Rectangle ","NULL ","getTextBox ","","",java.lang.RuntimeException
364,"CatchClause","java.lang.CloneNotSupportedException",false,"color text box clone ","com.jme3.font.StringBlock com.jme3.font.Rectangle com.jme3.math.ColorRGBA java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
365,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.font.Rectangle ","","","","",java.lang.AssertionError
366,"IfStatement","null",true,"font ","com.jme3.font.BitmapFont ","NULL ","","","java.lang.IllegalStateException ",java.lang.IllegalArgumentException
367,"IfStatement","null",false,"mat ","com.jme3.material.Material ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalStateException
368,"IfStatement","null",true,"mouse keys ","com.jme3.input.MouseInput com.jme3.input.KeyInput ","NULL ","","","",java.lang.IllegalArgumentException
369,"IfStatement","null",false,"events permitted ","boolean ","","","","",java.lang.UnsupportedOperationException
370,"IfStatement","null",false,"events permitted ","boolean ","","","","",java.lang.UnsupportedOperationException
371,"IfStatement","null",false,"events permitted ","boolean ","","","","",java.lang.UnsupportedOperationException
372,"IfStatement","null",false,"events permitted ","boolean ","","","","",java.lang.UnsupportedOperationException
373,"IfStatement","null",false,"mapping ","com.jme3.input.InputManager.Mapping ","NULL ","","","",java.lang.IllegalArgumentException
374,"IfStatement","null",false,"events permitted ","boolean ","","","","",java.lang.UnsupportedOperationException
375,"IfStatement","null",true,"button id ","int ","","getButtonCount ","","",java.lang.IllegalArgumentException
376,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
377,"MethodDeclaration","null",false,"","","","","IOException ","",java.lang.UnsupportedOperationException
378,"IfStatement","null",true,"mouse button ","int ","","","","",java.lang.IllegalArgumentException
379,"IfStatement","null",true,"mouse axis ","int ","","","","",java.lang.IllegalArgumentException
380,"SwitchStatement","null",false,"mouse axis ","int ","","","","",java.lang.AssertionError
381,"IfStatement","null",false,"inited ","boolean ","","","","",java.lang.IllegalStateException
382,"IfStatement","null",false,"inited ","boolean ","","","","",java.lang.IllegalStateException
383,"IfStatement","null",false,"inited ","boolean ","","","","",java.lang.IllegalStateException
384,"IfStatement","null",false,"inited ","boolean ","","","","",java.lang.IllegalStateException
385,"IfStatement","null",false,"inited ","boolean ","","","","",java.lang.IllegalStateException
386,"CatchClause","java.lang.CloneNotSupportedException",false,"color ","com.jme3.light.Light com.jme3.math.ColorRGBA java.lang.Object ","","clone ","","",java.lang.AssertionError
387,"IfStatement","null",false,"packed angle cos ","float ","0.0f ","","","",java.lang.IllegalArgumentException
388,"IfStatement","null",true,"spot range ","float ","","","","",java.lang.IllegalArgumentException
389,"IfStatement","null",true,"spot inner angle half_pi ","float com.jme3.math.FastMath ","","","","",java.lang.IllegalArgumentException
390,"IfStatement","null",true,"half_pi spot outer angle ","float com.jme3.math.FastMath ","","","","",java.lang.IllegalArgumentException
391,"IfStatement","null",true,"radius ","float ","","","","",java.lang.IllegalArgumentException
392,"CatchClause","java.lang.CloneNotSupportedException",false,"owner dist to owner list tlist clone ","com.jme3.light.LightList com.jme3.light.Light float com.jme3.scene.Spatial java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
393,"CatchClause","java.lang.CloneNotSupportedException",false,"tlist clone ","com.jme3.light.LightList com.jme3.light.Light java.lang.Object ","NULL ","","","",java.lang.AssertionError
394,"IfStatement","null",true,"value ","java.lang.Object com.jme3.texture.Texture ","","","","",java.lang.IllegalArgumentException
395,"IfStatement","null",false,"value ","java.lang.Object com.jme3.math.Quaternion ","","","","",java.lang.UnsupportedOperationException
396,"CatchClause","java.lang.CloneNotSupportedException",false,"param ","com.jme3.material.MatParam java.lang.Object ","","","","",java.lang.AssertionError
397,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.material.RenderState ","","","","",java.lang.AssertionError
398,"IfStatement","null",true,"line width ","float ","","","","",java.lang.IllegalArgumentException
399,"IfStatement","null",false,"define id max_defines ","int com.jme3.shader.DefineList ","","","","",java.lang.IllegalStateException
400,"IfStatement","null",false,"define id max_defines ","int com.jme3.shader.DefineList ","","","","",java.lang.IllegalStateException
401,"IfStatement","null",false,"shader generator ","com.jme3.shader.ShaderGenerator ","NULL ","","","",java.lang.UnsupportedOperationException
402,"IfStatement","null",true,"def ","com.jme3.material.MaterialDef ","NULL ","","","",java.lang.NullPointerException
403,"CatchClause","java.lang.CloneNotSupportedException",false,"additional state mat entry techniques param values technique sorting id ","com.jme3.material.Material int com.jme3.util.ListMap java.util.Map.Entry com.jme3.material.RenderState com.jme3.material.MatParam java.lang.String com.jme3.material.Technique java.util.HashMap java.util.Map java.lang.Object ","NULL ","clone getEntry getValue getKey size put ","","",java.lang.AssertionError
404,"IfStatement","null",false,"param def ","com.jme3.material.MatParam ","NULL ","","","",java.lang.IllegalArgumentException
405,"IfStatement","null",true,"value ","com.jme3.texture.Texture ","NULL ","","","",java.lang.IllegalArgumentException
406,"SwitchStatement","null",true,"value ","com.jme3.texture.Texture com.jme3.texture.Texture.Type ","","getType ","","",java.lang.UnsupportedOperationException
407,"IfStatement","null",false,"tech defs ","java.util.List boolean ","NULL ","isEmpty ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
408,"IfStatement","null",false,"tech ","com.jme3.material.Technique ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
409,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
410,"SwitchStatement","null",false,"","com.jme3.light.Light com.jme3.light.Light.Type ","","getType ","","",java.lang.UnsupportedOperationException
411,"SwitchStatement","null",false,"","com.jme3.light.Light com.jme3.light.Light.Type ","","getType ","","",java.lang.UnsupportedOperationException
412,"SwitchStatement","null",false,"","com.jme3.light.Light com.jme3.light.Light.Type ","","getType ","","",java.lang.UnsupportedOperationException
413,"IfStatement","null",true,"flt ","float boolean java.lang.Float ","","isNaN ","","",java.lang.UnsupportedOperationException
414,"CatchClause","java.lang.CloneNotSupportedException",false,"origin segment direction ","com.jme3.math.Vector3f com.jme3.math.LineSegment java.lang.Object ","","clone ","","",java.lang.AssertionError
415,"CatchClause","java.lang.CloneNotSupportedException",false,"","com.jme3.math.Vector3f com.jme3.math.Rectangle java.lang.Object ","","clone ","","",java.lang.AssertionError
416,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Vector4f ","","","","",java.lang.AssertionError
417,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
418,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
419,"CatchClause","java.lang.CloneNotSupportedException",false,"origin direction ","com.jme3.math.Vector3f com.jme3.math.Ray java.lang.Object ","","clone ","","",java.lang.AssertionError
420,"IfStatement","null",true,"spline type nurb ","com.jme3.math.Spline.SplineType ","","","","",java.lang.IllegalArgumentException
421,"IfStatement","null",true,"spline type nurb ","com.jme3.math.Spline.SplineType ","","","","",java.lang.IllegalArgumentException
422,"IfStatement","null",true,"nurb knots ","int java.util.List java.lang.Float ","","get ","","",java.lang.IllegalArgumentException
423,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Vector3f ","","","","",java.lang.AssertionError
424,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
425,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
426,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
427,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
428,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
429,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
430,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
431,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
432,"IfStatement","null",true,"matrix length ","int float ","","","","",java.lang.IllegalArgumentException
433,"IfStatement","null",true,"matrix length ","int float ","","","","",java.lang.IllegalArgumentException
434,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Matrix3f ","","","","",java.lang.AssertionError
435,"IfStatement","null",true,"matrix length ","int float ","","","","",java.lang.IllegalArgumentException
436,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
437,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
438,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
439,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
440,"IfStatement","null",true,"matrix length ","int float ","","","","",java.lang.IllegalArgumentException
441,"IfStatement","null",true,"matrix length ","int float ","","","","",java.lang.IllegalArgumentException
442,"IfStatement","null",true,"length translation ","int float ","","","","",java.lang.IllegalArgumentException
443,"IfStatement","null",true,"length translation ","int float ","","","","",java.lang.IllegalArgumentException
444,"IfStatement","null",true,"length angles ","int float ","","","","",java.lang.IllegalArgumentException
445,"IfStatement","null",true,"length angles ","int float ","","","","",java.lang.IllegalArgumentException
446,"IfStatement","null",true,"vec length ","int float ","","","","",java.lang.IllegalArgumentException
447,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Matrix4f ","","","","",java.lang.AssertionError
448,"CatchClause","java.lang.CloneNotSupportedException",false,"center ","com.jme3.math.Vector3f com.jme3.math.Ring java.lang.Object ","","clone ","","",java.lang.AssertionError
449,"CatchClause","java.lang.CloneNotSupportedException",false,"pointb pointa pointc ","com.jme3.math.Vector3f com.jme3.math.Triangle java.lang.Object ","","clone ","","",java.lang.AssertionError
450,"CatchClause","java.lang.CloneNotSupportedException",false,"line origin direction ","com.jme3.math.Vector3f com.jme3.math.Line java.lang.Object ","","clone ","","",java.lang.AssertionError
451,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Vector2f ","","","","",java.lang.AssertionError
452,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.ColorRGBA ","","","","",java.lang.AssertionError
453,"IfStatement","null",true,"normal ","com.jme3.math.Vector3f ","NULL ","","","",java.lang.IllegalArgumentException
454,"IfStatement","null",true,"normal ","com.jme3.math.Vector3f ","NULL ","","","",java.lang.IllegalArgumentException
455,"CatchClause","java.lang.CloneNotSupportedException",false,"normal ","com.jme3.math.Plane com.jme3.math.Vector3f java.lang.Object ","","clone ","","",java.lang.AssertionError
456,"CatchClause","java.lang.CloneNotSupportedException",false,"rot scale translation ","com.jme3.math.Transform com.jme3.math.Vector3f com.jme3.math.Quaternion java.lang.Object ","","clone ","","",java.lang.AssertionError
457,"IfStatement","null",true,"nurb nurb spline ","com.jme3.math.Spline.SplineType com.jme3.math.Spline ","","getType ","","",java.lang.IllegalArgumentException
458,"IfStatement","null",true,"length angles ","int float ","","","","",java.lang.IllegalArgumentException
459,"IfStatement","null",true,"length angles ","int float ","","","","",java.lang.IllegalArgumentException
460,"SwitchStatement","null",true,"","int ","","","","",java.lang.IllegalArgumentException
461,"IfStatement","null",true,"axis length ","com.jme3.math.Vector3f int ","","","","",java.lang.IllegalArgumentException
462,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.math.Quaternion ","","","","",java.lang.AssertionError
463,"IfStatement","null",true,"arg ","java.lang.Object com.jme3.opencl.Image ","","","","",java.lang.IllegalArgumentException
464,"IfStatement","null",true,"length sizes ","long int ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
465,"IfStatement","null",true,"dimension ","int ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
466,"CatchClause","java.io.IOException",true,"reader builder asset manager ","com.jme3.asset.AssetManager java.lang.StringBuilder java.io.BufferedReader void ","","buildSourcesRec ","","",com.jme3.asset.AssetNotFoundException
467,"IfStatement","null",false,"info ","com.jme3.asset.AssetInfo ","NULL ","","IOException ","",com.jme3.asset.AssetNotFoundException
468,"IfStatement","null",false,"info ","com.jme3.asset.AssetInfo ","NULL ","","","",com.jme3.asset.AssetNotFoundException
469,"IfStatement","null",true,"filter ","com.jme3.post.Filter ","NULL ","","","",java.lang.IllegalArgumentException
470,"IfStatement","null",true,"filter ","com.jme3.post.Filter ","NULL ","","","",java.lang.IllegalArgumentException
471,"IfStatement","null",true,"num samples ","int ","","","","",java.lang.IllegalArgumentException
472,"CatchClause","java.lang.CloneNotSupportedException",false,"location coeff top view matrix length max_world_planes coeff right coeff left projection matrix viewport changed cam gui bounding ","com.jme3.renderer.Camera com.jme3.math.Matrix4f int com.jme3.math.Plane float com.jme3.math.Quaternion com.jme3.math.Vector3f com.jme3.bounding.BoundingBox com.jme3.math.Plane boolean void ","NULL ","clone update ","","",java.lang.AssertionError
473,"IfStatement","null",true,"processor ","com.jme3.post.SceneProcessor ","NULL ","","","",java.lang.IllegalArgumentException
474,"IfStatement","null",true,"processor ","com.jme3.post.SceneProcessor ","NULL ","","","",java.lang.IllegalArgumentException
475,"IfStatement","null",true,"scene ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.IllegalArgumentException
476,"IfStatement","null",true,"scene ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.IllegalArgumentException
477,"IfStatement","null",false,"","com.jme3.scene.Geometry com.jme3.material.Material ","NULL ","getMaterial ","","",java.lang.IllegalStateException
478,"IfStatement","null",false,"","com.jme3.scene.Geometry com.jme3.material.Material ","NULL ","getMaterial ","","",java.lang.IllegalStateException
479,"IfStatement","null",false,"gl fmt ","com.jme3.renderer.opengl.GLImageFormat ","NULL ","","","",com.jme3.renderer.RendererException
480,"SwitchStatement","null",true,"format ","com.jme3.texture.Image.Format ","","","","",java.lang.UnsupportedOperationException
481,"IfStatement","null",true,"gl_texture_2d image target ","int com.jme3.texture.Image com.jme3.renderer.opengl.GL ","","getDepth ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IndexOutOfBoundsException ",java.lang.UnsupportedOperationException
482,"IfStatement","null",true,"image ","com.jme3.texture.Image int ","NULL ","getMipMapSizes ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IndexOutOfBoundsException ",java.lang.UnsupportedOperationException
483,"IfStatement","null",true,"image ","com.jme3.texture.Image int ","","getMultiSamples ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IndexOutOfBoundsException ",java.lang.UnsupportedOperationException
484,"IfStatement","null",false,"jme format ","com.jme3.texture.Image.Format boolean ","","isCompressed ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IndexOutOfBoundsException ",java.lang.UnsupportedOperationException
485,"IfStatement","null",false,"jme format ","com.jme3.texture.Image.Format boolean ","","isDepthFormat ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IndexOutOfBoundsException ",java.lang.UnsupportedOperationException
486,"IfStatement","null",true,"buffer ","java.nio.Buffer java.nio.DoubleBuffer ","","","","",java.lang.UnsupportedOperationException
487,"IfStatement","null",true,"level ","int ","","","","",java.lang.IllegalArgumentException
488,"SwitchStatement","null",true,"state ","com.jme3.material.RenderState com.jme3.material.RenderState.FaceCullMode ","","getFaceCullMode ","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
489,"SwitchStatement","null",true,"state ","com.jme3.material.RenderState com.jme3.material.RenderState.BlendMode ","","getBlendMode ","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
490,"SwitchStatement","null",true,"blend equation ","com.jme3.material.RenderState.BlendEquation ","","","","",java.lang.UnsupportedOperationException
491,"SwitchStatement","null",true,"blend equation alpha ","com.jme3.material.RenderState.BlendEquationAlpha ","","","","",java.lang.UnsupportedOperationException
492,"SwitchStatement","null",true,"blend func ","com.jme3.material.RenderState.BlendFunc ","","","","",java.lang.UnsupportedOperationException
493,"SwitchStatement","null",true,"stencil op ","com.jme3.material.RenderState.StencilOperation ","","","","",java.lang.UnsupportedOperationException
494,"SwitchStatement","null",true,"test func ","com.jme3.material.RenderState.TestFunction ","","","","",java.lang.UnsupportedOperationException
495,"SwitchStatement","null",true,"uniform ","com.jme3.shader.Uniform com.jme3.shader.VarType ","","getVarType ","","",java.lang.UnsupportedOperationException
496,"SwitchStatement","null",true,"buffer type ","com.jme3.shader.BufferObject.BufferType ","","","","",java.lang.IllegalArgumentException
497,"SwitchStatement","null",true,"type ","com.jme3.shader.Shader.ShaderType ","","","","",java.lang.UnsupportedOperationException
498,"IfStatement","null",false,"","int ","","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
499,"IfStatement","null",false,"","int ","","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
500,"IfStatement","null",false,"gles2 language ","boolean java.lang.String ","GLSL100 ","equals ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
501,"IfStatement","null",false,"info log ","java.lang.String ","NULL ","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
502,"IfStatement","null",false,"info log ","java.lang.String ","NULL ","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
503,"IfStatement","null",false,"","int ","","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
504,"IfStatement","null",false,"info log ","java.lang.String ","NULL ","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
505,"IfStatement","null",false,"info log ","java.lang.String ","NULL ","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
506,"IfStatement","null",true,"shader ","com.jme3.shader.Shader ","NULL ","","","",java.lang.IllegalArgumentException
507,"IfStatement","null",false,"frame buffer blit caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","",com.jme3.renderer.RendererException
508,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
509,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
510,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
511,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
512,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
513,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
514,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
515,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
516,"SwitchStatement","null",false,"status ","int ","","","","java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
517,"IfStatement","null",true,"rb size ","int com.jme3.texture.FrameBuffer ","","getWidth getHeight ","","",com.jme3.renderer.RendererException
518,"IfStatement","null",true,"attachment slot ","int ","","","","",java.lang.UnsupportedOperationException
519,"IfStatement","null",true,"","com.jme3.texture.FrameBuffer int com.jme3.texture.FrameBuffer.RenderBuffer ","NULL ","getNumColorBuffers getDepthBuffer ","","",java.lang.IllegalArgumentException
520,"IfStatement","null",true,"","com.jme3.texture.FrameBuffer int ","","getSamples ","","com.jme3.renderer.RendererException ",java.lang.IllegalArgumentException
521,"IfStatement","null",false,"texture multisample caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","java.lang.IllegalArgumentException ",com.jme3.renderer.RendererException
522,"IfStatement","null",true,"limits frame buffer attachments ","com.jme3.renderer.Limits java.util.EnumMap com.jme3.texture.FrameBuffer int java.lang.Integer ","","get getNumColorBuffers ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
523,"IfStatement","null",false,"caps frame buffer m r t ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
524,"IfStatement","null",true,"frame buffer mrt attachments limits ","com.jme3.renderer.Limits java.util.EnumMap com.jme3.texture.FrameBuffer int java.lang.Integer ","","get getNumColorBuffers ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
525,"IfStatement","null",false,"caps frame buffer ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","",com.jme3.renderer.RendererException
526,"IfStatement","null",false,"","com.jme3.texture.FrameBuffer.RenderBuffer ","NULL ","","","",java.lang.IllegalArgumentException
527,"IfStatement","null",true,"samples texture multisample caps ","com.jme3.renderer.Caps int java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
528,"IfStatement","null",false,"texture array caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
529,"IfStatement","null",false,"caps open g l20 ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
530,"IfStatement","null",true,"face ","int ","","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
531,"SwitchStatement","null",true,"type ","com.jme3.texture.Texture.Type ","","","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
532,"SwitchStatement","null",true,"filter ","com.jme3.texture.Texture.MagFilter ","","","","",java.lang.UnsupportedOperationException
533,"SwitchStatement","null",true,"filter ","com.jme3.texture.Texture.MinFilter ","","","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
534,"SwitchStatement","null",true,"filter ","com.jme3.texture.Texture.MinFilter ","","","","java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
535,"SwitchStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","","","","",java.lang.UnsupportedOperationException
536,"SwitchStatement","null",true,"tex ","com.jme3.texture.Texture com.jme3.texture.Texture.Type ","","getType ","","",java.lang.UnsupportedOperationException
537,"IfStatement","null",false,"caps partial non power of two textures ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
538,"IfStatement","null",true,"tex ","com.jme3.texture.Texture com.jme3.texture.Texture.MinFilter boolean ","","getMinFilter usesMipMapLevels ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
539,"IfStatement","null",true,"edge clamp tex ","com.jme3.texture.Texture.WrapMode com.jme3.texture.Texture.WrapAxis com.jme3.texture.Texture ","","getWrap ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
540,"IfStatement","null",true,"edge clamp tex ","com.jme3.texture.Texture.WrapMode com.jme3.texture.Texture.WrapAxis com.jme3.texture.Texture ","","getWrap ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException java.lang.UnsupportedOperationException ",com.jme3.renderer.RendererException
541,"SwitchStatement","null",true,"tex ","com.jme3.texture.Texture com.jme3.texture.Texture.Type ","","getType ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",java.lang.UnsupportedOperationException
542,"IfStatement","null",false,"texture multisample caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
543,"IfStatement","null",true,"img ","com.jme3.texture.Image boolean ","","hasMipmaps isGeneratedMipmapsRequired ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
544,"IfStatement","null",true,"img caps depth texture ","com.jme3.renderer.Caps boolean com.jme3.texture.Image java.util.EnumSet com.jme3.texture.Image.Format ","","contains getFormat isDepthFormat ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
545,"IfStatement","null",true,"cube size img ","int com.jme3.texture.Image ","","getWidth getHeight ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
546,"IfStatement","null",true,"img ","com.jme3.texture.Image int ","","getWidth getHeight ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
547,"IfStatement","null",true,"img tex size ","int com.jme3.texture.Image ","","getWidth getHeight ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
548,"IfStatement","null",false,"texture array caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
549,"SwitchStatement","null",true,"usage ","com.jme3.scene.VertexBuffer.Usage ","","","","",java.lang.UnsupportedOperationException
550,"SwitchStatement","null",true,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
551,"SwitchStatement","null",true,"","com.jme3.scene.VertexBuffer com.jme3.scene.VertexBuffer.Format ","","getFormat ","","",java.lang.UnsupportedOperationException
552,"IfStatement","null",false,"buffer type caps ","com.jme3.shader.BufferObject.BufferType java.util.EnumSet com.jme3.renderer.Caps boolean ","","contains getRequiredCaps ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
553,"IfStatement","null",false,"data ","java.nio.ByteBuffer ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
554,"SwitchStatement","null",false,"buffer type ","com.jme3.shader.BufferObject.BufferType ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
555,"IfStatement","null",true,"index ","com.jme3.scene.VertexBuffer.Type com.jme3.scene.VertexBuffer ","","getBufferType ","","java.lang.IllegalStateException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",java.lang.IllegalArgumentException
556,"IfStatement","null",false,"context bound shader program ","com.jme3.renderer.RenderContext int ","","","","java.lang.IllegalArgumentException com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",java.lang.IllegalStateException
557,"IfStatement","null",false,"mesh instancing caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","java.lang.IllegalArgumentException java.lang.IllegalStateException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
558,"IfStatement","null",true,"","com.jme3.scene.VertexBuffer int ","","getNumComponents ","","java.lang.IllegalArgumentException java.lang.IllegalStateException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
559,"IfStatement","null",true,"index buf index ","com.jme3.scene.VertexBuffer.Type com.jme3.scene.VertexBuffer ","","getBufferType ","","com.jme3.renderer.RendererException com.jme3.renderer.RendererException ",java.lang.IllegalArgumentException
560,"IfStatement","null",false,"integer index buffer caps ","com.jme3.renderer.Caps java.util.EnumSet boolean ","","contains ","","java.lang.IllegalArgumentException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
561,"SwitchStatement","null",true,"index buf ","com.jme3.scene.VertexBuffer com.jme3.scene.VertexBuffer.Format ","","getFormat ","","java.lang.IllegalArgumentException com.jme3.renderer.RendererException ",com.jme3.renderer.RendererException
562,"SwitchStatement","null",true,"mode ","com.jme3.scene.Mesh.Mode ","","","","",java.lang.UnsupportedOperationException
563,"IfStatement","null",true,"mesh instancing caps count ","com.jme3.renderer.Caps int java.util.EnumSet boolean ","","contains ","","",com.jme3.renderer.RendererException
564,"IfStatement","null",false,"err ","int ","","","","",com.jme3.renderer.RendererException
565,"SwitchStatement","null",true,"bucket ","com.jme3.renderer.queue.RenderQueue.Bucket ","","","","",java.lang.UnsupportedOperationException
566,"SwitchStatement","null",true,"bucket ","com.jme3.renderer.queue.RenderQueue.Bucket ","","","","",java.lang.UnsupportedOperationException
567,"SwitchStatement","null",true,"bucket ","com.jme3.renderer.queue.RenderQueue.Bucket ","","","","",java.lang.UnsupportedOperationException
568,"SwitchStatement","null",true,"bucket ","com.jme3.renderer.queue.RenderQueue.Bucket ","","","","",java.lang.UnsupportedOperationException
569,"SwitchStatement","null",true,"bucket ","com.jme3.renderer.queue.RenderQueue.Bucket ","","","","",java.lang.UnsupportedOperationException
570,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
571,"IfStatement","null",false,"parent ","com.jme3.scene.Node ","NULL ","","","",java.lang.IllegalStateException
572,"IfStatement","null",false,"refresh flags ","int ","","","","",java.lang.IllegalStateException
573,"IfStatement","null",true,"override ","com.jme3.material.MatParamOverride ","NULL ","","","",java.lang.IllegalArgumentException
574,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
575,"CatchClause","java.lang.CloneNotSupportedException",false,"clone ","com.jme3.scene.Spatial java.lang.Object ","","","","",java.lang.AssertionError
576,"IfStatement","null",false,"data ","java.nio.Buffer ","NULL ","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
577,"IfStatement","null",false,"data ","java.nio.Buffer int ","","position ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
578,"IfStatement","null",false,"data ","java.nio.Buffer int ","","limit ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
579,"IfStatement","null",false,"data offset ","int java.nio.Buffer ","","limit ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
580,"IfStatement","null",false,"components ","int ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
581,"IfStatement","null",false,"cpu only data usage ","com.jme3.scene.VertexBuffer.Usage java.nio.Buffer boolean ","","isDirect ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
582,"IfStatement","null",false,"data ","java.nio.Buffer java.nio.DoubleBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
583,"IfStatement","null",false,"data ","java.nio.Buffer java.nio.CharBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
584,"IfStatement","null",false,"data ","java.nio.Buffer java.nio.LongBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
585,"IfStatement","null",false,"float data format ","com.jme3.scene.VertexBuffer.Format java.nio.Buffer java.nio.FloatBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
586,"IfStatement","null",false,"unsigned int data format int ","com.jme3.scene.VertexBuffer.Format java.nio.Buffer java.nio.IntBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
587,"IfStatement","null",false,"unsigned short short data format ","com.jme3.scene.VertexBuffer.Format java.nio.Buffer java.nio.ShortBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
588,"IfStatement","null",false,"unsigned byte data format byte ","com.jme3.scene.VertexBuffer.Format java.nio.Buffer java.nio.ByteBuffer ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
589,"IfStatement","null",false,"data ","java.nio.Buffer java.nio.IntBuffer ","","","","",java.lang.UnsupportedOperationException
590,"IfStatement","null",false,"","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
591,"IfStatement","null",true,"data usage format ","com.jme3.scene.VertexBuffer.Format java.nio.Buffer com.jme3.scene.VertexBuffer.Usage ","NULL ","","","java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
592,"IfStatement","null",true,"data ","java.nio.Buffer boolean ","","isReadOnly ","","java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
593,"IfStatement","null",true,"components ","int ","","","","java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
594,"IfStatement","null",true,"data ","java.nio.Buffer boolean ","NULL ","isReadOnly ","","",java.lang.IllegalArgumentException
595,"IfStatement","null",false,"","int ","","","","java.lang.IllegalStateException ",java.lang.UnsupportedOperationException
596,"IfStatement","null",false,"float format ","com.jme3.scene.VertexBuffer.Format ","","","","java.lang.UnsupportedOperationException ",java.lang.IllegalStateException
597,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
598,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
599,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
600,"IfStatement","null",true,"out vb components format ","com.jme3.scene.VertexBuffer.Format int com.jme3.scene.VertexBuffer ","","","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
601,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
602,"IfStatement","null",true,"components ","int ","","","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
603,"SwitchStatement","null",true,"format ","com.jme3.scene.VertexBuffer.Format ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
604,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","IOException ","",java.io.IOException
605,"SwitchStatement","null",false,"format ","com.jme3.scene.VertexBuffer.Format ","","","IOException ","",java.io.IOException
606,"IfStatement","null",true,"mesh ","com.jme3.scene.Mesh ","NULL ","","","",java.lang.IllegalArgumentException
607,"IfStatement","null",false,"mesh ","com.jme3.scene.Mesh int ","","getNumLodLevels ","","java.lang.IllegalArgumentException ",java.lang.IllegalStateException
608,"IfStatement","null",true,"lod mesh ","int com.jme3.scene.Mesh ","","getNumLodLevels ","","java.lang.IllegalStateException ",java.lang.IllegalArgumentException
609,"IfStatement","null",true,"mesh ","com.jme3.scene.Mesh ","NULL ","","","",java.lang.IllegalArgumentException
610,"IfStatement","null",false,"mesh ","com.jme3.scene.Mesh ","NULL ","","","",java.lang.NullPointerException
611,"IfStatement","null",true,"start index ","int ","","","","",java.lang.AssertionError
612,"IfStatement","null",true,"child ","com.jme3.scene.Spatial com.jme3.scene.Geometry ","","","","",java.lang.UnsupportedOperationException
613,"IfStatement","null",true,"child ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.NullPointerException
614,"IfStatement","null",true,"child ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.NullPointerException
615,"IfStatement","null",true,"child name ","java.lang.String ","NULL ","","","",java.lang.NullPointerException
616,"CatchClause","java.lang.CloneNotSupportedException",false,"buffers collision tree mesh bound buffers list mode start element lengths vertex array i d clone ","com.jme3.scene.Mesh int com.jme3.scene.CollisionData com.jme3.util.IntMap com.jme3.util.SafeArrayList com.jme3.bounding.BoundingVolume int com.jme3.scene.VertexBuffer java.lang.Object ","NULL ","clone ","","",java.lang.AssertionError
617,"CatchClause","java.lang.CloneNotSupportedException",false,"max num weights element count mode start vertex array i d mesh bound element lengths instance count clone collision tree buf clone ","com.jme3.scene.Mesh int com.jme3.scene.VertexBuffer int com.jme3.util.SafeArrayList com.jme3.bounding.BoundingVolume com.jme3.util.IntMap com.jme3.scene.CollisionData com.jme3.scene.VertexBuffer.Type com.jme3.scene.VertexBuffer java.lang.Object ","NULL ","clone ordinal getArray getBufferType add put ","","",java.lang.AssertionError
618,"CatchClause","java.lang.CloneNotSupportedException",false,"vertex array i d clone ","com.jme3.scene.Mesh int java.lang.Object ","","","","",java.lang.AssertionError
619,"IfStatement","null",true,"line width ","float ","","","","",java.lang.IllegalArgumentException
620,"SwitchStatement","null",false,"mode ","com.jme3.scene.Mesh.Mode ","","","","",java.lang.UnsupportedOperationException
621,"IfStatement","null",false,"interleaved data ","com.jme3.scene.VertexBuffer.Type com.jme3.scene.VertexBuffer ","NULL ","getBuffer ","","",java.lang.IllegalStateException
622,"IfStatement","null",true,"lod ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
623,"IfStatement","null",true,"length lod levels lod ","int com.jme3.scene.VertexBuffer ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
624,"IfStatement","null",true,"lod ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
625,"IfStatement","null",false,"float ","com.jme3.scene.VertexBuffer com.jme3.scene.VertexBuffer.Format int ","NULL ","getFormat getNumComponents ","","",java.lang.UnsupportedOperationException
626,"IfStatement","null",false,"vertex array i d ","int ","","","","",java.lang.IllegalStateException
627,"IfStatement","null",true,"buffers ","com.jme3.util.IntMap com.jme3.scene.VertexBuffer int boolean com.jme3.scene.VertexBuffer.Type ","","ordinal getBufferType containsKey ","","",java.lang.IllegalArgumentException
628,"IfStatement","null",true,"components format ","com.jme3.scene.VertexBuffer com.jme3.scene.VertexBuffer.Format int ","","getFormat getNumComponents ","","",java.lang.UnsupportedOperationException
629,"IfStatement","null",false,"hybrid mode ","com.jme3.scene.Mesh.Mode ","","","","",java.lang.UnsupportedOperationException
630,"IfStatement","null",false,"new index new num verts ","int ","","","","",java.lang.AssertionError
631,"IfStatement","null",false,"","com.jme3.scene.VertexBuffer ","NULL ","","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",java.lang.IllegalStateException
632,"IfStatement","null",false,"float ","com.jme3.scene.VertexBuffer.Format com.jme3.scene.VertexBuffer ","","getFormat ","","java.lang.IllegalStateException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
633,"IfStatement","null",false,"","com.jme3.scene.VertexBuffer int ","","getNumComponents ","","java.lang.IllegalStateException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
634,"IfStatement","null",true,"type ","java.lang.Object ","","","","",java.lang.IllegalArgumentException
635,"SwitchStatement","null",false,"type ","byte ","","","IOException ","",java.lang.UnsupportedOperationException
636,"SwitchStatement","null",false,"type ","byte ","","","IOException ","",java.lang.UnsupportedOperationException
637,"IfStatement","null",false,"","java.lang.Object java.util.Map ","","","IOException ","",java.lang.UnsupportedOperationException
638,"SwitchStatement","null",false,"type ","int ","","","IOException ","",java.lang.UnsupportedOperationException
639,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
640,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
641,"IfStatement","null",false,"","com.jme3.scene.Geometry com.jme3.material.Material ","NULL ","getMaterial ","","",java.lang.IllegalStateException
642,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
643,"SwitchStatement","null",false,"geom ","com.jme3.scene.Geometry com.jme3.scene.Mesh com.jme3.scene.Mesh.Mode ","","getMode getMesh ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
644,"IfStatement","null",false,"current comps for buf index ","int com.jme3.scene.VertexBuffer com.jme3.scene.VertexBuffer.Type ","","getBufferType getNumComponents ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
645,"IfStatement","null",false,"list mode mode ","com.jme3.scene.Mesh.Mode ","NULL ","","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
646,"IfStatement","null",false,"in buf ","com.jme3.scene.VertexBuffer ","NULL ","","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
647,"IfStatement","null",false,"out buf ","com.jme3.scene.VertexBuffer ","NULL ","","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
648,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.scene.BatchNode.Batch ","","","","",java.lang.AssertionError
649,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial ","NULL ","","","",java.lang.IllegalStateException
650,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
651,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
652,"IfStatement","null",true,"spatial ","com.jme3.scene.Spatial com.jme3.scene.Geometry ","NULL ","","","",java.lang.IllegalArgumentException
653,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.scene.instancing.InstancedNode.InstanceTypeKey ","","","","",java.lang.AssertionError
654,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
655,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
656,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
657,"IfStatement","null",false,"param ","com.jme3.material.MatParam java.lang.Object boolean java.lang.Boolean ","NULL ","getValue booleanValue ","","",java.lang.IllegalStateException
658,"IfStatement","null",false,"old i g ","com.jme3.scene.instancing.InstancedGeometry ","NULL ","","","",java.lang.AssertionError
659,"IfStatement","null",false,"","com.jme3.scene.Geometry int com.jme3.scene.instancing.InstancedNode ","","getGeometryStartIndex ","","",java.lang.AssertionError
660,"IfStatement","null",false,"geom ","com.jme3.scene.Geometry boolean ","","isGrouped ","","",java.lang.AssertionError
661,"IfStatement","null",true,"max num instances ","int ","","","","",java.lang.IllegalArgumentException
662,"IfStatement","null",false,"first unused index geometries length ","int com.jme3.scene.Geometry ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
663,"IfStatement","null",true,"inside entries non null ","boolean ","","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
664,"IfStatement","null",false,"geometries ","int com.jme3.scene.Geometry com.jme3.scene.instancing.InstancedNode ","","getGeometryStartIndex2 ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
665,"IfStatement","null",false,"geometries ","int com.jme3.scene.Geometry ","NULL ","","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
666,"IfStatement","null",false,"geom ","com.jme3.scene.Geometry ","NULL ","","","java.lang.AssertionError ",java.lang.AssertionError
667,"IfStatement","null",false,"instance_size first unused index ","int java.nio.FloatBuffer ","","limit ","","java.lang.AssertionError ",java.lang.AssertionError
668,"IfStatement","null",true,"geometry ","com.jme3.scene.Geometry ","NULL ","","","",java.lang.IllegalArgumentException
669,"SwitchStatement","null",false,"mesh mode ","com.jme3.scene.Mesh.Mode ","","","","",java.lang.UnsupportedOperationException
670,"IfStatement","null",true,"buf ","java.nio.Buffer java.nio.IntBuffer ","","","","",java.lang.UnsupportedOperationException
671,"SwitchStatement","null",true,"mesh mode ","com.jme3.scene.Mesh.Mode ","","","","",java.lang.UnsupportedOperationException
672,"SwitchStatement","null",false,"vert index ","int ","","","","java.lang.UnsupportedOperationException ",java.lang.AssertionError
673,"IfStatement","null",false,"mesh mode triangle fan ","com.jme3.scene.Mesh.Mode ","","","","java.lang.AssertionError ",java.lang.UnsupportedOperationException
674,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
675,"IfStatement","null",true,"z samples ","int ","","","","",java.lang.IllegalArgumentException
676,"IfStatement","null",true,"z samples ","int ","","","","",java.lang.IllegalArgumentException
677,"IfStatement","null",true,"height radial samples top radius bottom radius axis samples ","float int ","","","","",java.lang.IllegalArgumentException
678,"IfStatement","null",true,"control points u points amount ","int java.util.List java.util.List ","","get size ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
679,"IfStatement","null",true,"u segments ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
680,"IfStatement","null",true,"v segments ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
681,"IfStatement","null",true,"length nurb knots ","int java.util.List ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
682,"IfStatement","null",true,"nurb knots ","int java.util.List java.lang.Float ","","get ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
683,"IfStatement","null",false,"technique def ","com.jme3.material.TechniqueDef ","NULL ","","","",java.lang.UnsupportedOperationException
684,"IfStatement","null",false,"source parts length ","int java.lang.String ","","","","",java.lang.IllegalArgumentException
685,"IfStatement","null",true,"var type type ","com.jme3.shader.VarType ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
686,"IfStatement","null",true,"value ","java.lang.Object ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
687,"CatchClause","java.lang.ReflectiveOperationException",true,"value ","java.lang.Object java.lang.Class ","","getClass newInstance ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
688,"IfStatement","null",false,"vector4 array var type ","com.jme3.shader.VarType ","NULL ","","","",java.lang.IllegalArgumentException
689,"IfStatement","null",true,"value ","java.lang.Object boolean java.util.Collection java.util.Collection ","","isEmpty ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
690,"MethodDeclaration","null",true,"var type value ","java.lang.Object com.jme3.shader.VarType java.util.Collection java.util.List boolean java.util.Collection ","NULL ","isEmpty ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
691,"IfStatement","null",true,"fields name ","java.lang.String java.util.Map boolean ","","containsKey ","","",java.lang.IllegalArgumentException
692,"IfStatement","null",false,"","int ","","getId ","","",java.lang.IllegalStateException
693,"IfStatement","null",false,"field ","com.jme3.shader.BufferObjectField ","NULL ","","","",java.lang.IllegalArgumentException
694,"IfStatement","null",true,"estimate size max size ","int ","","","","",java.lang.IllegalStateException
695,"SwitchStatement","null",true,"field ","com.jme3.shader.BufferObjectField com.jme3.shader.VarType ","","getType ","","",java.lang.IllegalArgumentException
696,"MethodDeclaration","null",true,"value ","java.lang.Object java.util.Collection ","","","","",java.lang.IllegalArgumentException
697,"SwitchStatement","null",true,"field ","com.jme3.shader.BufferObjectField com.jme3.shader.VarType ","","getType ","","",java.lang.IllegalArgumentException
698,"IfStatement","null",true,"renderer object ","java.lang.Object com.jme3.renderer.Renderer ","","","","",java.lang.IllegalArgumentException
699,"IfStatement","null",true,"num values max_defines ","int ","","","","",java.lang.IllegalArgumentException
700,"IfStatement","null",false,"val ","float boolean java.lang.Float ","","isNaN isInfinite ","","",java.lang.IllegalArgumentException
701,"IfStatement","null",false,"left variable ","com.jme3.shader.ShaderNodeVariable java.lang.String boolean ","sampler ","startsWith getType ","","",java.lang.IllegalArgumentException
702,"IfStatement","null",true,"type ","com.jme3.shader.Shader.ShaderType ","NULL ","","","",java.lang.IllegalArgumentException
703,"IfStatement","null",true,"language ","java.lang.String ","NULL ","","","",java.lang.IllegalArgumentException
704,"IfStatement","null",true,"source ","java.lang.String ","NULL ","","","",java.lang.IllegalArgumentException
705,"IfStatement","null",true,"defines ","java.lang.String ","NULL ","","","",java.lang.IllegalArgumentException
706,"IfStatement","null",true,"buffer object ","com.jme3.shader.BufferObject ","NULL ","","","",java.lang.IllegalArgumentException
707,"IfStatement","null",true,"filter mode ","com.jme3.shadow.PssmShadowRenderer.FilterMode ","NULL ","","","",java.lang.NullPointerException
708,"IfStatement","null",true,"compare mode ","com.jme3.shadow.PssmShadowRenderer.CompareMode ","NULL ","","","",java.lang.NullPointerException
709,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.shadow.AbstractShadowFilter ","","","","",java.lang.RuntimeException
710,"IfStatement","null",true,"nb shadow maps nb splits ","int ","","","","",java.lang.IllegalArgumentException
711,"IfStatement","null",true,"filter mode ","com.jme3.shadow.EdgeFilteringMode ","NULL ","","","",java.lang.NullPointerException
712,"IfStatement","null",true,"compare mode ","com.jme3.shadow.CompareMode ","NULL ","","","",java.lang.IllegalArgumentException
713,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.RuntimeException
714,"IfStatement","null",false,"key ","java.lang.String boolean ","(float) ","endsWith ","IOException ","",java.io.IOException
715,"SwitchStatement","null",false,"key ","java.lang.String char ","","charAt ","BackingStoreException ","",java.lang.UnsupportedOperationException
716,"IfStatement","null",false,"low permissions ","boolean ","","","","",java.lang.UnsupportedOperationException
717,"IfStatement","null",true,"arch ","java.lang.String boolean ","arm ","equals ","","",java.lang.UnsupportedOperationException
718,"IfStatement","null",false,"","java.lang.String boolean ","mac os x darwin ","contains ","","",java.lang.UnsupportedOperationException
719,"IfStatement","null",true,"multi samples ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
720,"IfStatement","null",false,"","java.nio.ByteBuffer ","NULL ","getData ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
721,"IfStatement","null",false,"","boolean ","","hasMipmaps ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
722,"IfStatement","null",true,"index ","int ","","","","",java.lang.IllegalArgumentException
723,"IfStatement","null",true,"format ","com.jme3.texture.Image.Format ","NULL ","","","",java.lang.NullPointerException
724,"IfStatement","null",false,"height img width ","int com.jme3.texture.Image ","","getWidth getHeight ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
725,"IfStatement","null",false,"img format ","com.jme3.texture.Image.Format com.jme3.texture.Image ","","getFormat ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
726,"IfStatement","null",false,"img mip map sizes ","int com.jme3.texture.Image boolean java.util.Arrays ","","getMipMapSizes equals ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
727,"SwitchStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","","","","",java.lang.IllegalArgumentException
728,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
729,"IfStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
730,"SwitchStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
731,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","",java.lang.IllegalArgumentException
732,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
733,"IfStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
734,"SwitchStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
735,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","",java.lang.IllegalArgumentException
736,"SwitchStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","","","","",java.lang.IllegalArgumentException
737,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object com.jme3.texture.Texture ","","","","",java.lang.AssertionError
738,"IfStatement","null",true,"minification filter ","com.jme3.texture.Texture.MinFilter ","NULL ","","","",java.lang.IllegalArgumentException
739,"IfStatement","null",true,"magnification filter ","com.jme3.texture.Texture.MagFilter ","NULL ","","","",java.lang.IllegalArgumentException
740,"IfStatement","null",true,"compare mode ","com.jme3.texture.Texture.ShadowCompareMode ","NULL ","","","",java.lang.IllegalArgumentException
741,"IfStatement","null",true,"height width ","int ","","","","",java.lang.IllegalArgumentException
742,"IfStatement","null",false,"","int ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
743,"IfStatement","null",true,"format ","com.jme3.texture.Image.Format boolean ","","isDepthFormat ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
744,"IfStatement","null",false,"","int ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
745,"IfStatement","null",true,"format ","com.jme3.texture.Image.Format boolean ","","isDepthFormat ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
746,"IfStatement","null",false,"img ","com.jme3.texture.Image ","NULL ","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalStateException ",java.lang.IllegalArgumentException
747,"IfStatement","null",true,"img depth ","boolean com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat isDepthFormat ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalStateException ",java.lang.IllegalArgumentException
748,"IfStatement","null",true,"img depth ","boolean com.jme3.texture.Image com.jme3.texture.Image.Format ","","getFormat isDepthFormat ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalStateException ",java.lang.IllegalArgumentException
749,"IfStatement","null",false,"height img width ","int com.jme3.texture.Image ","","getWidth getHeight ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalStateException ",java.lang.IllegalArgumentException
750,"IfStatement","null",true,"tex samples ","int com.jme3.texture.Texture com.jme3.texture.Image ","","getImage getMultiSamples ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalStateException
751,"IfStatement","null",true,"index ","int ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
752,"IfStatement","null",true,"index color bufs ","int java.util.ArrayList ","","size ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
753,"IfStatement","null",false,"","int ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
754,"IfStatement","null",true,"format ","com.jme3.texture.Image.Format boolean ","","isDepthFormat ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
755,"IfStatement","null",false,"","int ","","","","",java.lang.UnsupportedOperationException
756,"IfStatement","null",false,"","int ","","","","",java.lang.UnsupportedOperationException
757,"IfStatement","null",false,"","int ","","","","",java.lang.UnsupportedOperationException
758,"IfStatement","null",false,"","int ","","","","",java.lang.UnsupportedOperationException
759,"IfStatement","null",false,"","int ","","","","",java.lang.UnsupportedOperationException
760,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
761,"IfStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
762,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","",java.lang.IllegalArgumentException
763,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
764,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
765,"IfStatement","null",true,"axis ","com.jme3.texture.Texture.WrapAxis ","NULL ","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
766,"IfStatement","null",true,"mode ","com.jme3.texture.Texture.WrapMode ","NULL ","","","",java.lang.IllegalArgumentException
767,"MethodDeclaration","null",false,"","","","","","",java.lang.IllegalArgumentException
768,"IfStatement","null",true,"height width ","int ","","","","",java.lang.IllegalArgumentException
769,"IfStatement","null",true,"mip map level available mips ","int ","","","","",java.lang.IllegalStateException
770,"IfStatement","null",true,"bpp ","int ","","","","",java.lang.UnsupportedOperationException
771,"IfStatement","null",true,"image ","com.jme3.texture.Image int java.util.List ","","getData size ","","",java.lang.IllegalStateException
772,"IfStatement","null",true,"height width mip level ","int int ","","","","",java.lang.IllegalArgumentException
773,"IfStatement","null",true,"image ","com.jme3.texture.Image boolean ","","hasMipmaps ","","",java.lang.IllegalArgumentException
774,"IfStatement","null",true,"length image mip level ","int com.jme3.texture.Image int ","","getMipMapSizes ","","",java.lang.IllegalArgumentException
775,"IfStatement","null",false,"codec ","com.jme3.texture.image.ImageCodec ","NULL ","","","",java.lang.UnsupportedOperationException
776,"IfStatement","null",true,"buf ","java.nio.Buffer java.nio.DoubleBuffer ","","","","",java.lang.UnsupportedOperationException
777,"CatchClause","java.io.UnsupportedEncodingException",true,"bytes length data ","java.nio.ByteBuffer byte java.lang.String int java.nio.Buffer ","UTF-8 ","createByteBuffer getBytes flip put ","","",java.lang.UnsupportedOperationException
778,"MethodDeclaration","null",true,"buf ","java.nio.Buffer java.nio.ByteBuffer java.nio.ShortBuffer java.nio.LongBuffer java.nio.DoubleBuffer java.nio.IntBuffer java.nio.FloatBuffer ","","","","",java.lang.UnsupportedOperationException
779,"IfStatement","null",true,"texture ","com.jme3.texture.Texture ","NULL ","","","",java.lang.IllegalArgumentException
780,"IfStatement","null",true,"image ","com.jme3.texture.Image int ","","getWidth getHeight ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
781,"IfStatement","null",true,"image ","com.jme3.texture.Image int ","","getMultiSamples ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
782,"IfStatement","null",false,"fmt image ","com.jme3.texture.Image.Format com.jme3.texture.Image ","","getFormat ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
783,"IfStatement","null",false,"height width image ","int com.jme3.texture.Image ","","getWidth getHeight ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
784,"IfStatement","null",false,"size data2 ","int java.nio.ByteBuffer ","","capacity ","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
785,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
786,"IfStatement","null",true,"normal mesh ","com.jme3.scene.VertexBuffer.Type com.jme3.scene.Mesh com.jme3.scene.VertexBuffer ","NULL ","getBuffer ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
787,"SwitchStatement","null",true,"mesh ","com.jme3.scene.Mesh com.jme3.scene.Mesh.Mode ","","getMode ","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
788,"IfStatement","null",true,"tex coord mesh ","com.jme3.scene.VertexBuffer.Type com.jme3.scene.Mesh com.jme3.scene.VertexBuffer ","NULL ","getBuffer ","","",java.lang.IllegalArgumentException
789,"SwitchStatement","null",true,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
790,"SwitchStatement","null",true,"format ","com.jme3.scene.VertexBuffer.Format ","","","","",java.lang.UnsupportedOperationException
791,"IfStatement","null",true,"angle ","float ","179 ","","","",java.lang.IllegalArgumentException
792,"MethodDeclaration","null",false,"","","","","IOException ","",java.io.IOException
793,"MethodDeclaration","null",false,"","","","","IOException ","",java.io.IOException
794,"IfStatement","null",true,"obj ","com.jme3.util.NativeObject int ","","getId ","","",java.lang.IllegalArgumentException
795,"IfStatement","null",false,"ref2 ","com.jme3.util.NativeObjectManager.NativeObjectRef ","NULL ","","","",java.lang.IllegalArgumentException
796,"IfStatement","null",false,"length a ","int ","","","","",java.lang.UnsupportedOperationException
797,"IfStatement","null",false,"length b ","int ","","","","",java.lang.UnsupportedOperationException
798,"CatchClause","java.lang.CloneNotSupportedException",false,"buffer backing array clone ","com.jme3.util.SafeArrayList java.util.List java.lang.Object java.util.ArrayList ","NULL ","clone ","","",java.lang.AssertionError
799,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
800,"MethodDeclaration","null",false,"","","","","","",java.lang.UnsupportedOperationException
801,"IfStatement","null",false,"is used ","boolean ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
802,"IfStatement","null",false,"stack index temp vars ","com.jme3.util.TempVars.TempVarsStack int com.jme3.util.TempVars ","","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
803,"IfStatement","null",true,"invalid_id ","int ","","","","",java.lang.IllegalStateException
804,"CatchClause","java.lang.CloneNotSupportedException",false,"object manager handle ref invalid_id update needed obj ","com.jme3.util.NativeObject java.lang.Object int boolean com.jme3.util.NativeObjectManager ","NULL ","","","",java.lang.AssertionError
805,"IfStatement","null",true,"initial capacity ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
806,"IfStatement","null",true,"initial capacity ","int ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
807,"IfStatement","null",true,"load factor ","float ","","","","java.lang.IllegalArgumentException java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
808,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
809,"CatchClause","java.lang.CloneNotSupportedException",false,"","java.lang.Object ","","","","",java.lang.AssertionError
810,"CatchClause","java.lang.CloneNotSupportedException",true,"object clone ","java.lang.Object ","","javaClone ","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
811,"IfStatement","null",true,"object ","java.lang.Cloneable ","","","","java.lang.IllegalArgumentException ",java.lang.IllegalArgumentException
812,"CatchClause","java.lang.ReflectiveOperationException",true,"object type ","java.lang.Class java.lang.reflect.Method java.lang.Object java.lang.Class java.lang.Class ","","cast objectClass invoke ","CloneNotSupportedException ","java.lang.CloneNotSupportedException ",java.lang.RuntimeException
813,"CatchClause","java.lang.CloneNotSupportedException",true,"object cloner clone ","com.jme3.util.clone.Cloner ","","javaClone ","","",java.lang.IllegalArgumentException
814,"CatchClause","java.lang.NumberFormatException",true,"","java.lang.String int java.lang.Integer ","","parseInt ","SAXException ","",org.xml.sax.SAXException
815,"IfStatement","null",true,"","java.lang.String ","NULL ","","SAXException ","org.xml.sax.SAXException ",org.xml.sax.SAXException
816,"CatchClause","java.lang.NumberFormatException",true,"","java.lang.String int java.lang.Integer ","","parseInt ","SAXException ","org.xml.sax.SAXException ",org.xml.sax.SAXException
817,"CatchClause","java.lang.NumberFormatException",true,"","java.lang.String java.lang.Float float ","","parseFloat ","SAXException ","",org.xml.sax.SAXException
818,"IfStatement","null",true,"","java.lang.String ","NULL ","","SAXException ","org.xml.sax.SAXException ",org.xml.sax.SAXException
819,"CatchClause","java.lang.NumberFormatException",true,"","java.lang.String java.lang.Float float ","","parseFloat ","SAXException ","org.xml.sax.SAXException ",org.xml.sax.SAXException
820,"IfStatement","null",true,"str ","java.lang.String ","NULL ","","SAXException ","",org.xml.sax.SAXException
821,"IfStatement","null",false,"name path ","java.lang.String boolean ","","endsWith ","","com.jme3.asset.AssetLoadException com.jme3.asset.AssetLoadException com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetNotFoundException
822,"CatchClause","java.net.URISyntaxException",false,"separator char name url path ","java.lang.String java.net.URL char java.io.File boolean java.net.URI com.jme3.asset.AssetNotFoundException "," doesn't match Asset name doesn't match requirements. ","endsWith toURI replace getCanonicalPath ","","com.jme3.asset.AssetNotFoundException com.jme3.asset.AssetLoadException com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
823,"CatchClause","java.io.IOException",false,"separator char name url path ","java.lang.String java.net.URL char java.io.File boolean java.net.URI com.jme3.asset.AssetNotFoundException "," doesn't match Asset name doesn't match requirements. ","endsWith toURI replace getCanonicalPath ","","com.jme3.asset.AssetNotFoundException com.jme3.asset.AssetLoadException com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
824,"CatchClause","java.io.IOException",true,"url key manager ","java.net.URL com.jme3.asset.AssetManager com.jme3.asset.plugins.UrlAssetInfo com.jme3.asset.AssetKey ","","create ","","com.jme3.asset.AssetNotFoundException com.jme3.asset.AssetLoadException com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetLoadException
825,"CatchClause","java.net.MalformedURLException",true,"root root path ","java.net.URL java.lang.String ","","","","",java.lang.IllegalArgumentException
826,"CatchClause","java.io.IOException",false,"zipfile entry ","java.util.zip.ZipFile java.util.zip.ZipEntry java.io.InputStream ","","getInputStream ","","",com.jme3.asset.AssetLoadException
827,"CatchClause","java.io.IOException",true,"open_read root path zipfile ","java.util.zip.ZipFile java.lang.String int java.io.File ","","","","",com.jme3.asset.AssetLoadException
828,"IfStatement","null",false,"conn http_ok ","int java.net.HttpURLConnection ","","getResponseCode ","IOException ","java.io.IOException ",java.io.IOException
829,"IfStatement","null",false,"conn http_ok ","int java.net.HttpURLConnection ","","getResponseCode ","IOException ","java.io.IOException ",java.io.IOException
830,"IfStatement","null",true,"table censig offset ","int long byte java.util.zip.ZipEntry ","","get32 ","IOException ","",java.io.IOException
831,"IfStatement","null",false,"read ","int ","","","IOException ","",java.io.IOException
832,"IfStatement","null",false,"offset ","int ","","","IOException ","",java.io.IOException
833,"IfStatement","null",true,"url ","java.net.URL java.lang.String boolean ","http https ","getProtocol equals ","IOException ","",java.lang.UnsupportedOperationException
834,"IfStatement","null",false,"entry ","com.jme3.asset.plugins.HttpZipLocator.ZipEntry2 ","NULL ","","IOException ","",java.lang.RuntimeException
835,"CatchClause","java.io.IOException",false,"url conn ","java.net.URLConnection java.net.URL java.io.InputStream void ","","getInputStream openConnection setUseCaches ","","",com.jme3.asset.AssetLoadException
836,"IfStatement","null",true,"root path ","java.lang.String ","NULL ","","","java.lang.IllegalArgumentException com.jme3.asset.AssetLoadException ",java.lang.NullPointerException
837,"IfStatement","null",false,"root ","java.io.File boolean ","","isDirectory ","","java.lang.NullPointerException com.jme3.asset.AssetLoadException ",java.lang.IllegalArgumentException
838,"CatchClause","java.io.IOException",true,"root root path ","java.io.File java.lang.String java.lang.IllegalArgumentException boolean ","Given root path is not a directory ","getCanonicalFile isDirectory ","","java.lang.NullPointerException java.lang.IllegalArgumentException ",com.jme3.asset.AssetLoadException
839,"CatchClause","java.io.FileNotFoundException",false,"file ","java.io.File java.io.FileInputStream ","","","","",com.jme3.asset.AssetLoadException
840,"IfStatement","null",false,"canonical absolute ","java.lang.String boolean ","","endsWith ","","com.jme3.asset.AssetLoadException ",com.jme3.asset.AssetNotFoundException
841,"CatchClause","java.io.IOException",false,"canonical file absolute ","java.lang.String java.io.File boolean com.jme3.asset.AssetNotFoundException "," doesn't match Asset name doesn't match requirements. ","endsWith getAbsolutePath getCanonicalPath ","","com.jme3.asset.AssetNotFoundException ",com.jme3.asset.AssetLoadException
842,"IfStatement","null",true,"time ","float ","","","","java.lang.RuntimeException ",java.lang.UnsupportedOperationException
843,"CatchClause","java.io.IOException",false,"reset offset new stream ","java.io.InputStream java.io.BufferedInputStream int long ","","skip ","","java.lang.UnsupportedOperationException ",java.lang.RuntimeException
844,"IfStatement","null",false,"compression ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
845,"IfStatement","null",false,"bits per sample ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
846,"IfStatement","null",false,"channels bits per sample bytes per sample ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
847,"IfStatement","null",false,"sample rate bytes per sec bytes per sample ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
848,"IfStatement","null",false,"i_ r i f f sig ","int ","","","IOException ","java.io.IOException ",java.io.IOException
849,"IfStatement","null",false,"i_ w a v e ","int com.jme3.audio.plugins.WAVLoader.ResettableInputStream ","","readInt ","IOException ","java.io.IOException ",java.io.IOException
850,"IfStatement","null",false,"format version version ","int com.jme3.export.FormatVersion ","","","IOException ","",java.io.IOException
851,"CatchClause","java.io.IOException",true,"object asset manager importer baos exporter ","com.jme3.export.binary.BinaryImporter com.jme3.export.binary.BinaryExporter java.io.ByteArrayOutputStream com.jme3.asset.AssetManager void com.jme3.export.Savable byte ","","toByteArray setAssetManager save load ","","",java.lang.AssertionError
852,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
853,"IfStatement","null",true,"length languages lang size ","int java.lang.String ","","","","",com.jme3.asset.AssetLoadException
854,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
855,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
856,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
857,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
858,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
859,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
860,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
861,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
862,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.lang.UnsupportedOperationException ",java.io.IOException
863,"SwitchStatement","null",true,"type ","com.jme3.shader.VarType ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.lang.UnsupportedOperationException
864,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException ",java.io.IOException
865,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException ",java.io.IOException
866,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.io.IOException ",java.io.IOException
867,"IfStatement","null",false,"","com.jme3.material.MatParam ","NULL ","","IOException ","java.io.IOException ",java.io.IOException
868,"SwitchStatement","null",true,"word ","java.lang.String ","","","","",java.lang.IllegalArgumentException
869,"IfStatement","null",false,"split ","java.lang.String boolean ","LineWidth ","equals ","IOException ","",com.jme3.material.plugins.MatParseException
870,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
871,"IfStatement","null",false,"split ","java.lang.String boolean ","NoRender ","equals ","IOException ","",com.jme3.material.plugins.MatParseException
872,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","",java.io.IOException
873,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","java.lang.UnsupportedOperationException ",java.io.IOException
874,"SwitchStatement","null",false,"technique ","com.jme3.material.TechniqueDef com.jme3.material.TechniqueDef.LightMode ","","getLightMode ","IOException ","java.io.IOException ",java.lang.UnsupportedOperationException
875,"IfStatement","null",false,"line ","java.lang.String boolean ","Exception ","startsWith ","IOException ","java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.asset.AssetLoadException
876,"IfStatement","null",false,"line ","java.lang.String boolean ","Exception ","startsWith ","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",java.io.IOException
877,"IfStatement","null",true,"roots ","java.util.List int ","","size ","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",java.io.IOException
878,"IfStatement","null",false,"material name ","java.lang.String boolean ","Material ","startsWith ","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",java.io.IOException
879,"IfStatement","null",false,"material name ","java.lang.String boolean ","","equals ","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
880,"IfStatement","null",false,"extending ","boolean ","","","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
881,"IfStatement","null",false,"def ","com.jme3.material.MaterialDef ","NULL ","","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
882,"IfStatement","null",false,"extending ","boolean ","","","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
883,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
884,"IfStatement","null",false,"stat type ","java.lang.String boolean ","MaterialParameters ","equals ","IOException ","com.jme3.asset.AssetLoadException java.io.IOException java.io.IOException java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
885,"IfStatement","null",false,"key ","com.jme3.asset.AssetKey java.lang.String boolean com.jme3.asset.MaterialKey ","j3m ","equals getExtension ","IOException ","java.io.IOException ",java.io.IOException
886,"IfStatement","null",false,"key ","com.jme3.asset.AssetKey java.lang.String boolean com.jme3.asset.MaterialKey ","j3md ","equals getExtension ","IOException ","java.io.IOException ",java.io.IOException
887,"IfStatement","null",false,"statement ","com.jme3.util.blockparser.Statement java.lang.String boolean ","ShaderNodeDefinition ","startsWith getLine ","IOException ","",com.jme3.material.plugins.MatParseException
888,"CatchClause","java.lang.RuntimeException",false,"statement1 shader node definition ","com.jme3.shader.ShaderNodeDefinition com.jme3.util.blockparser.Statement com.jme3.shader.ShaderNodeVariable boolean java.util.List ","","readVariable add getInputs ","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
889,"CatchClause","java.lang.RuntimeException",false,"statement1 shader node definition ","com.jme3.shader.ShaderNodeDefinition com.jme3.util.blockparser.Statement java.lang.String boolean com.jme3.shader.ShaderNodeVariable java.util.List void ","None ","setNoOutput trim getLine readVariable equals add getOutputs ","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
890,"IfStatement","null",false,"line ","java.lang.String boolean ","Output ","startsWith ","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
891,"CatchClause","java.lang.RuntimeException",false,"shader node definition is load doc statement1 shader language shader name statement type split doc var names ","java.lang.String com.jme3.util.blockparser.Statement com.jme3.shader.ShaderNodeDefinition java.lang.RuntimeException boolean void java.lang.String java.util.Set com.jme3.material.plugins.MatParseException java.util.List com.jme3.shader.Shader.ShaderType ","Type None one of Type, Shader, Documentation, Input, Output Shader Output Input Documentation ","startsWith add getLine getContents readVariable clear getMessage trim setDocumentation getInputs getShadersPath ","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
892,"IfStatement","null",false,"length split var ","int java.lang.String ","","","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
893,"IfStatement","null",false,"var names var name ","java.lang.String java.util.Set boolean ","","contains ","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
894,"IfStatement","null",false,"line ","java.lang.String boolean ","OutputMappings ","startsWith ","IOException ","",com.jme3.material.plugins.MatParseException
895,"IfStatement","null",false,"split length ","int java.lang.String ","","","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
896,"IfStatement","null",false,"length type and lang ","int java.lang.String ","","","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
897,"IfStatement","null",true,"length vars ","int java.lang.String ","","","MatParseException ","",com.jme3.material.plugins.MatParseException
898,"IfStatement","null",true,"param ","com.jme3.material.MatParam java.lang.String boolean com.jme3.shader.VarType ","Array ","getVarType endsWith name ","MatParseException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
899,"IfStatement","null",false,"","com.jme3.material.MatParam ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
900,"IfStatement","null",false,"param ","com.jme3.material.MatParam ","NULL ","","MatParseException ","",com.jme3.material.plugins.MatParseException
901,"CatchClause","java.lang.Exception",true,"mapping im_has_name_space statement ","com.jme3.shader.VariableMapping boolean com.jme3.util.blockparser.Statement ","","parseMapping ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
902,"IfStatement","null",false,"definition left ","com.jme3.shader.ShaderNodeVariable com.jme3.shader.ShaderNodeDefinition boolean java.util.List ","","updateVariableFromList getInputs ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
903,"IfStatement","null",false,"name_space_mat_param right left ","com.jme3.shader.ShaderNodeVariable java.lang.String boolean com.jme3.shader.ShaderGenerator ","sampler NULL ","startsWith equals getNameSpace getType ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
904,"IfStatement","null",false,"right expression ","java.lang.String com.jme3.shader.ShaderNodeVariable ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
905,"IfStatement","null",false,"fragment definition ","com.jme3.shader.Shader.ShaderType com.jme3.shader.ShaderNodeDefinition ","","getType ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
906,"IfStatement","null",false,"param ","com.jme3.material.MatParam ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
907,"IfStatement","null",false,"world param ","com.jme3.shader.UniformBinding ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
908,"IfStatement","null",false,"node ","com.jme3.shader.ShaderNode ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
909,"IfStatement","null",false,"var ","com.jme3.shader.ShaderNodeVariable ","NULL ","","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
910,"IfStatement","null",false,"type ","java.lang.String ","NULL ","","MatParseException ","",com.jme3.material.plugins.MatParseException
911,"CatchClause","java.lang.Exception",true,"mapping statement om_has_name_space ","com.jme3.shader.VariableMapping boolean com.jme3.util.blockparser.Statement ","","parseMapping ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
912,"IfStatement","null",false,"right left ","com.jme3.shader.ShaderNodeVariable java.lang.String boolean ","sampler ","startsWith getType ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
913,"IfStatement","null",false,"name_space_global left ","java.lang.String com.jme3.shader.ShaderNodeVariable com.jme3.shader.ShaderGenerator boolean ","","equals getNameSpace ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
914,"IfStatement","null",false,"definition right ","com.jme3.shader.ShaderNodeVariable com.jme3.shader.ShaderNodeDefinition boolean java.util.List ","","updateVariableFromList getOutputs ","MatParseException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
915,"IfStatement","null",false,"nodes name ","java.lang.String java.util.Map boolean ","","containsKey ","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
916,"IfStatement","null",false,"statement ","com.jme3.util.blockparser.Statement java.lang.String boolean ","ShaderNode ","startsWith getLine ","IOException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
917,"IfStatement","null",true,"var global ","com.jme3.shader.ShaderNodeVariable java.lang.String boolean ","","getName equals ","MatParseException ","",com.jme3.material.plugins.MatParseException
918,"IfStatement","null",false,"def line length ","int java.lang.String ","","","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
919,"CatchClause","com.jme3.asset.AssetNotFoundException",false,"defs asset manager definition path ","java.util.List java.lang.String com.jme3.asset.AssetManager com.jme3.asset.ShaderNodeDefinitionKey ","","loadAsset ","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
920,"IfStatement","null",false,"def ","com.jme3.shader.ShaderNodeDefinition ","NULL ","","IOException ","com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
921,"IfStatement","null",true,"mapping ","com.jme3.shader.VariableMapping boolean com.jme3.shader.ShaderUtils ","","typesMatch ","MatParseException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
922,"IfStatement","null",true,"mapping ","com.jme3.shader.VariableMapping boolean com.jme3.shader.ShaderUtils ","","multiplicityMatch ","MatParseException ","com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
923,"IfStatement","null",false,"","com.jme3.asset.AssetKey com.jme3.asset.ShaderNodeDefinitionKey ","","","IOException ","com.jme3.asset.AssetLoadException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",java.io.IOException
924,"IfStatement","null",false,"line ","java.lang.String boolean ","Exception ","startsWith ","IOException ","java.io.IOException com.jme3.material.plugins.MatParseException com.jme3.material.plugins.MatParseException ",com.jme3.asset.AssetLoadException
925,"IfStatement","null",false,"line ","java.lang.String boolean ","Exception ","startsWith ","IOException ","java.io.IOException com.jme3.asset.AssetLoadException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
926,"IfStatement","null",false,"roots ","java.util.List int ","","size ","IOException ","java.io.IOException com.jme3.asset.AssetLoadException com.jme3.material.plugins.MatParseException ",com.jme3.material.plugins.MatParseException
927,"IfStatement","null",true,"name ","java.lang.String boolean ",".mtl ","endsWith toLowerCase ","IOException ","",java.io.IOException
928,"IfStatement","null",true,"face list ","java.util.ArrayList boolean ","","isEmpty ","IOException ","",java.io.IOException
929,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.ModelKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
930,"IfStatement","null",true,"node name ","java.lang.String boolean ","","equals ","","com.jme3.asset.AssetLoadException ",java.io.IOException
931,"CatchClause","java.io.IOException",true,"depend node reader node buffered reader sb ext node name depend cache asset manager depend node ","java.lang.String java.lang.StringBuilder com.jme3.shader.plugins.ShaderDependencyNode boolean java.io.Reader int java.util.Map com.jme3.asset.AssetManager java.io.BufferedReader void java.io.IOException "," -- NULL // -- end import Node depends on itself. // -- begin import #import ","append trim equals length startsWith substring loadAsset get addDependency loadNode endsWith ","","java.io.IOException ",com.jme3.asset.AssetLoadException
932,"MethodDeclaration","null",false,"all nodes node ","java.util.Collection boolean com.jme3.shader.plugins.ShaderDependencyNode java.util.List ","","isEmpty getDependOnMe ","IOException ","",java.io.IOException
933,"IfStatement","null",false,"position in list ","int ","","","","",java.lang.IllegalArgumentException
934,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.TextureKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
935,"IfStatement","null",false,"dxgi format ","int ","","","IOException ","java.io.IOException ",java.io.IOException
936,"IfStatement","null",false,"array size ","int ","","","IOException ","java.io.IOException ",java.io.IOException
937,"IfStatement","null",false,"","java.io.DataInput int ","0x20534444 124 ","readInt ","IOException ","java.io.IOException ",java.io.IOException
938,"IfStatement","null",false,"flags ddsd_mandatory_dx10 ddsd_mandatory ","int boolean ","","","IOException ","java.io.IOException ",java.io.IOException
939,"IfStatement","null",false,"pf size ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
940,"SwitchStatement","null",false,"fourcc ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
941,"SwitchStatement","null",false,"bpp ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
942,"SwitchStatement","null",false,"bpp ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
943,"SwitchStatement","null",false,"bpp ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
944,"IfStatement","null",false,"ddpf_alpha pf flags ","int boolean ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
945,"IfStatement","null",false,"","int ","","","","",java.lang.RuntimeException
946,"SwitchStatement","null",true,"format ","com.jme3.texture.Image.Format ","","","","",java.lang.IllegalArgumentException
947,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.TextureKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
948,"IfStatement","null",false,"pixel depth ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
949,"IfStatement","null",false,"pixel depth ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
950,"IfStatement","null",false,"index length c map entries ","int com.jme3.texture.plugins.TGALoader.ColorMapEntry ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
951,"IfStatement","null",false,"index length c map entries ","int com.jme3.texture.plugins.TGALoader.ColorMapEntry ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
952,"IfStatement","null",false,"bytes per index ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
953,"IfStatement","null",false,"type_colormapped image type ","int ","","","IOException ","java.io.IOException java.io.IOException java.io.IOException java.io.IOException java.io.IOException ",java.io.IOException
954,"IfStatement","null",true,"img ","com.jme3.texture.Image boolean com.jme3.texture.Image.Format ","","isCompressed getFormat ","","",java.lang.UnsupportedOperationException
955,"IfStatement","null",false,"fmt str ","java.lang.String boolean ","","equals ","IOException ","java.io.IOException java.io.IOException ",java.io.IOException
956,"IfStatement","null",false,"space idx size str ","int java.lang.String ","","length ","IOException ","java.io.IOException java.io.IOException ",java.io.IOException
957,"IfStatement","null",false,"height width ","int ","","","IOException ","java.io.IOException java.io.IOException ",java.io.IOException
958,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.TextureKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
959,"IfStatement","null",true,"width read width ","int ","","","IOException ","",java.io.IOException
960,"IfStatement","null",false,"res data length ","int java.lang.String ","","","IOException ","java.io.IOException ",java.io.IOException
961,"IfStatement","null",false,"value ","java.lang.String boolean ","32-bit_rle_rgbe 32-bit_rle_xyze ","equals ","IOException ","java.io.IOException ",java.io.IOException
962,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.TextureKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
963,"IfStatement","null",true,"info ","com.jme3.asset.AssetInfo com.jme3.asset.AssetKey com.jme3.asset.TextureKey ","","getKey ","IOException ","",java.lang.IllegalArgumentException
964,"IfStatement","null",false,"file id ","byte boolean ","","checkFileIdentifier ","","java.lang.UnsupportedOperationException ",java.lang.IllegalArgumentException
965,"IfStatement","null",false,"number of array elements pixel depth number of faces ","int ","","","","java.lang.IllegalArgumentException ",java.lang.UnsupportedOperationException
966,"IfStatement","null",true,"num results expected num results ","int ","","","","",java.lang.RuntimeException
967,"IfStatement","null",false,"evaluated ","boolean ","","","","",java.lang.IllegalStateException
968,"IfStatement","null",false,"evaluated ","boolean ","","","","",java.lang.IllegalStateException
969,"IfStatement","null",false,"evaluated ","boolean ","","","","",java.lang.IllegalStateException
970,"IfStatement","null",false,"evaluated ","boolean ","","","","",java.lang.IllegalStateException
971,"CatchClause","java.lang.NoSuchFieldException",true,"refresh flags field scene ","java.lang.reflect.Field com.jme3.scene.Spatial java.lang.Object void java.lang.Integer ","refreshFlags ","setAccessible getDeclaredField get ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
972,"CatchClause","java.lang.SecurityException",true,"refresh flags field scene ","java.lang.reflect.Field com.jme3.scene.Spatial java.lang.Object void java.lang.Integer ","refreshFlags ","setAccessible getDeclaredField get ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
973,"CatchClause","java.lang.IllegalArgumentException",true,"refresh flags field scene ","java.lang.reflect.Field com.jme3.scene.Spatial java.lang.Object void java.lang.Integer ","refreshFlags ","setAccessible getDeclaredField get ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
974,"CatchClause","java.lang.IllegalAccessException",true,"refresh flags field scene ","java.lang.reflect.Field com.jme3.scene.Spatial java.lang.Object void java.lang.Integer ","refreshFlags ","setAccessible getDeclaredField get ","","java.lang.AssertionError java.lang.AssertionError java.lang.AssertionError ",java.lang.AssertionError
975,"SwitchStatement","null",false,"geom ","com.jme3.scene.Geometry com.jme3.scene.Mesh com.jme3.scene.Mesh.Mode ","","getMode getMesh ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
976,"IfStatement","null",false,"current comps for buf index ","int com.jme3.scene.VertexBuffer.Type com.jme3.scene.VertexBuffer ","","getBufferType getNumComponents ","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
977,"IfStatement","null",false,"list mode mode ","com.jme3.scene.Mesh.Mode ","NULL ","","","java.lang.UnsupportedOperationException java.lang.UnsupportedOperationException ",java.lang.UnsupportedOperationException
978,"IfStatement","null",true,"texture ","com.jme3.texture.Texture ","NULL ","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
979,"IfStatement","null",true,"name texture ","java.lang.String com.jme3.texture.Texture com.jme3.texture.Image ","NULL ","getImage ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
980,"IfStatement","null",false,"source texture name ","java.lang.String ","NULL ","","","",java.lang.IllegalStateException
981,"IfStatement","null",true,"texture ","com.jme3.texture.Texture ","NULL ","","","java.lang.IllegalStateException ",java.lang.IllegalStateException
982,"IfStatement","null",true,"name texture ","java.lang.String com.jme3.texture.Texture com.jme3.texture.Image ","NULL ","getImage ","","java.lang.IllegalStateException ",java.lang.IllegalStateException
983,"IfStatement","null",true,"root map name map name source texture name ","java.lang.String boolean ","NULL ","equals ","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException
984,"IfStatement","null",false,"location ","jme3tools.optimize.TextureAtlas.TextureAtlasTile ","NULL ","","","java.lang.IllegalStateException java.lang.IllegalStateException ",java.lang.IllegalStateException