forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.html
3505 lines (3499 loc) · 662 KB
/
icons.html
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
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<title>NetBeans Icons</title>
<!--The the image paths in this file assume that this HTML file is located in the
root of a clone of the NetBeans source repository. To use images from a specific
GitHub branch (e.g. belonging to a pull request), a line like the following can
be included here:
<base href="https://raw.githubusercontent.com/eirikbakke/incubator-netbeans/pr-svgs240612/">
-->
<style>
table td, table td * { vertical-align: top; margin-left: 5px; }
thead td { padding-right: 10px; padding-bottom: 10px; }
td { padding-right: 10px; }
thead { font-weight: bold; }
</style></head><body>
<h1>NetBeans Bitmap and SVG Icons</h1>
<p>This file lists bitmap icon files (GIF and PNG) in the NetBeans repo along with
their mapping to corresponding modernized SVG versions where available. A single
"artboard name" is assigned to icons that are exact or near duplicates, or which
are intended to have the same meaning.
<p>This file is generated by the
<tt>icon-scripts/hidpi-icons</tt> script in the
<a href="https://github.com/apache/netbeans-tools">netbeans-tools</a>
repository. Image paths are relative to the root of the NetBeans
<a href="https://github.com/apache/netbeans">source repository</a>.
<p>See the <a href="https://github.com/apache/netbeans-tools/tree/master/icon-scripts#readme">README</a>,
<a href="https://cwiki.apache.org/confluence/display/NETBEANS/SVG+Icon+Style+Guide+and+Process">Style Guide</a>, and
<a href="https://vimeo.com/667860571">Icon Drawing Video Tutorial</a> for more information.
<p><table border='0' cellpadding='1' cellspacing='0'>
<thead><tr><td>Artboard Name<td>SVG<td>Bitmap<td>Dim<td>Path of Bitmap in
Source Repo (no icon image means same as for previous row)</tr></thead>
<tr><td rowspan='39'>folderClosed<td rowspan='39'><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-closed.svg'><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-closed.png'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-closed.png</tr>
<tr><td><img src='apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/defaultFolder.gif'><td>16x16<td>apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/defaultFolder.gif</tr>
<tr><td><td><td>contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/defaultFolder.gif</tr>
<tr><td><td><td>enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/folder.gif</tr>
<tr><td><td><td>enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/folder.gif</tr>
<tr><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/defaultFolder.gif</tr>
<tr><td><td><td>ide/db/src/org/netbeans/modules/db/resources/defaultFolder.gif</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/defaultFolder.gif</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/folder.gif</tr>
<tr><td><td><td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/folder.gif</tr>
<tr><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/package.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/package.gif</tr>
<tr><td><td><td>java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/project/resources/nativeFilesFolder.gif</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/defaultFolder.gif</tr>
<tr><td><td><td>php/php.api.phpmodule/src/org/netbeans/modules/php/api/ui/resources/defaultFolder.gif</tr>
<tr><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/folder.gif</tr>
<tr><td><td><td>platform/openide.loaders/src/org/openide/loaders/defaultFolder.gif</tr>
<tr><td><td><td>platform/options.api/src/org/netbeans/modules/options/resources/folder.gif</tr>
<tr><td><td><td>rust/rust.project.api/src/org/netbeans/modules/rust/project/api/defaultFolder.gif</tr>
<tr><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/resources/defaultFolder.gif</tr>
<tr><td><img src='enterprise/websvc.core/src/org/netbeans/modules/websvc/core/webservices/ui/resources/folder.png'><td>16x16<td>enterprise/websvc.core/src/org/netbeans/modules/websvc/core/webservices/ui/resources/folder.png</tr>
<tr><td><td><td>enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/folder-closed.png</tr>
<tr><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/folder-closed.png</tr>
<tr><td><img src='ide/db/src/org/netbeans/modules/db/resources/folder.gif'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/folder.gif</tr>
<tr><td><td><td>ide/db/src/org/netbeans/modules/db/resources/folderAdaptors.gif</tr>
<tr><td><td><td>ide/db/src/org/netbeans/modules/db/resources/folderDrivers.gif</tr>
<tr><td><td><td>ide/utilities/src/org/netbeans/modules/openfile/folder.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/emptyInspector.gif</tr>
<tr><td><img src='ide/xml/src/org/netbeans/modules/xml/wizard/impl/folder_closed.png'><td>16x16<td>ide/xml/src/org/netbeans/modules/xml/wizard/impl/folder_closed.png</tr>
<tr><td><img src='java/jshell.support/src/org/netbeans/modules/jshell/resources/folder.png'><td>16x13<td>java/jshell.support/src/org/netbeans/modules/jshell/resources/folder.png</tr>
<tr><td><img src='nbi/infra/server/modules/war-admin/web/img/default-icon.png'><td>16x16<td>nbi/infra/server/modules/war-admin/web/img/default-icon.png</tr>
<tr><td><td><td>nbi/infra/server/modules/war-client/web/img/default-icon.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/folder.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/folder.png</tr>
<tr><td><img src='java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.closedIcon.png'><td>16x16<td>java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.closedIcon.png</tr>
<tr><td><td><td>java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.leafIcon.png</tr>
<tr><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/category.png'><td>16x16<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/category.png</tr>
<tr><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/win-explorer-folder.gif'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/win-explorer-folder.gif</tr>
<tr><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/xp-explorer-folder.gif'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/xp-explorer-folder.gif</tr>
<tr><td><img src='enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/collapse.gif'><td>16x16<td>enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/collapse.gif</tr>
<tr style='background: #eee'><td rowspan='25'>folderOpen<td rowspan='25'><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-open.svg'><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-open.png'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/hidpi-folder-open.png</tr>
<tr style='background: #eee'><td><img src='apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/defaultFolderOpen.gif'><td>16x16<td>apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/folderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/folderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/packageOpen.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/project/resources/nativeFilesFolderOpened.gif</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.api.phpmodule/src/org/netbeans/modules/php/api/ui/resources/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/folderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.loaders/src/org/openide/loaders/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>platform/options.api/src/org/netbeans/modules/options/resources/folderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>rust/rust.project.api/src/org/netbeans/modules/rust/project/api/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/resources/defaultFolderOpen.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/websvc.core/src/org/netbeans/modules/websvc/core/webservices/ui/resources/folderOpen.png'><td>16x16<td>enterprise/websvc.core/src/org/netbeans/modules/websvc/core/webservices/ui/resources/folderOpen.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/folder-open.png</tr>
<tr style='background: #eee'><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/folder-open.png</tr>
<tr style='background: #eee'><td><img src='ide/xml/src/org/netbeans/modules/xml/wizard/impl/folder_opened.png'><td>16x16<td>ide/xml/src/org/netbeans/modules/xml/wizard/impl/folder_opened.png</tr>
<tr style='background: #eee'><td><img src='ide/utilities/src/org/netbeans/modules/openfile/openFile.png'><td>16x16<td>ide/utilities/src/org/netbeans/modules/openfile/openFile.png</tr>
<tr style='background: #eee'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/open.gif'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/open.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/win-explorer-opened-folder.gif'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/win-explorer-opened-folder.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/vista_folder.png'><td>16x16<td>platform/o.n.swing.plaf/src/org/netbeans/swing/plaf/resources/vista_folder.png</tr>
<tr style='background: #eee'><td><img src='java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.openIcon.png'><td>16x16<td>java/java.lsp.server/nbcode/integration/src/org/netbeans/modules/nbcode/integration/resources/uidefaults/Tree.openIcon.png</tr>
<tr style='background: #eee'><td><img src='enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/expand.gif'><td>16x16<td>enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/expand.gif</tr>
<tr><td rowspan='19'>arrowDown<td rowspan='19'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/down.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/down.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/down.png</tr>
<tr><td><img src='contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/down.gif'><td>16x16<td>contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/down.gif</tr>
<tr><td><td><td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/down.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/alignment_d.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/down.gif</tr>
<tr><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-down.png'><td>14x14<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-down.png</tr>
<tr><td><td><td>platform/api.visual/src/org/netbeans/modules/visual/resources/arrow-down.png</tr>
<tr><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/nextmatch.png'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/nextmatch.png</tr>
<tr><td><td><td>ide/git/src/org/netbeans/modules/git/resources/icons/diff-next.png</tr>
<tr><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/nextmatch.png</tr>
<tr><td><td><td>ide/mercurial/src/org/netbeans/modules/mercurial/resources/icons/diff-next.png</tr>
<tr><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/nextmatch.png</tr>
<tr><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/diff-next.png</tr>
<tr><td><td><td>java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/nextmatch.png</tr>
<tr><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/next.png</tr>
<tr><td><img src='ide/db/src/org/netbeans/modules/db/resources/arrowDown.gif'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/arrowDown.gif</tr>
<tr><td><img src='ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/diff-next.png'><td>16x16<td>ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/diff-next.png</tr>
<tr><td><td><td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/diff/diff-next.png</tr>
<tr><td><img src='ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/diff-next.png'><td>16x16<td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/diff-next.png</tr>
<tr style='background: #eee'><td rowspan='20'>arrowUp<td rowspan='20'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/up.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/up.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/up.png</tr>
<tr style='background: #eee'><td><img src='contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/up.gif'><td>16x16<td>contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/up.gif</tr>
<tr style='background: #eee'><td><td><td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/up.gif</tr>
<tr style='background: #eee'><td><td><td>java/form/src/org/netbeans/modules/form/resources/alignment_u.gif</tr>
<tr style='background: #eee'><td><td><td>java/form/src/org/netbeans/modules/form/resources/up.gif</tr>
<tr style='background: #eee'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-up.png'><td>14x14<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-up.png</tr>
<tr style='background: #eee'><td><td><td>platform/api.visual/src/org/netbeans/modules/visual/resources/arrow-up.png</tr>
<tr style='background: #eee'><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/prevmatch.png'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/prevmatch.png</tr>
<tr style='background: #eee'><td><td><td>ide/git/src/org/netbeans/modules/git/resources/icons/diff-prev.png</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/prevmatch.png</tr>
<tr style='background: #eee'><td><td><td>ide/mercurial/src/org/netbeans/modules/mercurial/resources/icons/diff-prev.png</tr>
<tr style='background: #eee'><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/prevmatch.png</tr>
<tr style='background: #eee'><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/diff-prev.png</tr>
<tr style='background: #eee'><td><td><td>java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/prevmatch.png</tr>
<tr style='background: #eee'><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/prev.png</tr>
<tr style='background: #eee'><td><img src='ide/db/src/org/netbeans/modules/db/resources/arrowUp.gif'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/arrowUp.gif</tr>
<tr style='background: #eee'><td><img src='ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/diff-prev.png'><td>16x16<td>ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/diff-prev.png</tr>
<tr style='background: #eee'><td><td><td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/diff/diff-prev.png</tr>
<tr style='background: #eee'><td><img src='ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/diff-prev.png'><td>16x16<td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/diff-prev.png</tr>
<tr style='background: #eee'><td><img src='java/jshell.support/src/org/netbeans/modules/jshell/resources/history_item.png'><td>16x16<td>java/jshell.support/src/org/netbeans/modules/jshell/resources/history_item.png</tr>
<tr><td rowspan='7'>arrowLeft<td rowspan='7'><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/back.svg'><td><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/back.png'><td>16x16<td>ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/back.png</tr>
<tr><td><td><td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/back.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/back.png</tr>
<tr><td><img src='ide/html.editor/src/org/netbeans/modules/html/editor/resources/back.gif'><td>16x16<td>ide/html.editor/src/org/netbeans/modules/html/editor/resources/back.gif</tr>
<tr><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/back.gif</tr>
<tr><td><img src='java/maven/src/org/netbeans/modules/maven/execute/back.png'><td>16x16<td>java/maven/src/org/netbeans/modules/maven/execute/back.png</tr>
<tr><td><img src='java/form/src/org/netbeans/modules/form/resources/alignment_l.gif'><td>16x16<td>java/form/src/org/netbeans/modules/form/resources/alignment_l.gif</tr>
<tr style='background: #eee'><td rowspan='10'>arrowRight<td rowspan='10'><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/forward.svg'><td><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/forward.png'><td>16x16<td>ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/forward.png</tr>
<tr style='background: #eee'><td><td><td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/forward.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/forward.png</tr>
<tr style='background: #eee'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-right.png'><td>14x14<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/arrow-right.png</tr>
<tr style='background: #eee'><td><td><td>platform/api.visual/src/org/netbeans/modules/visual/resources/arrow-right.png</tr>
<tr style='background: #eee'><td><img src='ide/html.editor/src/org/netbeans/modules/html/editor/resources/forward.gif'><td>16x16<td>ide/html.editor/src/org/netbeans/modules/html/editor/resources/forward.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/forward.gif</tr>
<tr style='background: #eee'><td><img src='java/maven/src/org/netbeans/modules/maven/execute/forward.png'><td>16x16<td>java/maven/src/org/netbeans/modules/maven/execute/forward.png</tr>
<tr style='background: #eee'><td><img src='java/form/src/org/netbeans/modules/form/resources/alignment_r.gif'><td>16x16<td>java/form/src/org/netbeans/modules/form/resources/alignment_r.gif</tr>
<tr style='background: #eee'><td><img src='ide/xsl/src/org/netbeans/modules/xsl/resources/xsl_transformation.png'><td>16x16<td>ide/xsl/src/org/netbeans/modules/xsl/resources/xsl_transformation.png</tr>
<tr><td rowspan='17'>database<td rowspan='17'><img src='contrib/j2ee.weblogic9/src/org/netbeans/modules/j2ee/weblogic9/resources/jdbc.svg'><td><img src='contrib/j2ee.weblogic9/src/org/netbeans/modules/j2ee/weblogic9/resources/jdbc.gif'><td>16x16<td>contrib/j2ee.weblogic9/src/org/netbeans/modules/j2ee/weblogic9/resources/jdbc.gif</tr>
<tr><td><td><td>enterprise/glassfish.javaee/src/org/netbeans/modules/glassfish/javaee/resources/jdbc.gif</tr>
<tr><td><td><td>enterprise/javaee.wildfly/src/org/netbeans/modules/javaee/wildfly/resources/jdbc.gif</tr>
<tr><td><td><td>enterprise/payara.jakartaee/src/org/netbeans/modules/payara/jakartaee/resources/jdbc.gif</tr>
<tr><td><td><td>ide/db.mysql/src/org/netbeans/modules/db/mysql/resources/database.gif</tr>
<tr><td><td><td>ide/db/src/org/netbeans/modules/db/resources/database.gif</tr>
<tr><td><td><td>ide/derby/src/org/netbeans/modules/derby/resources/database.gif</tr>
<tr><td><img src='contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/Query.gif'><td>16x16<td>contrib/form.j2ee/src/org/netbeans/modules/form/j2ee/resources/Query.gif</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/database.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/database.gif</tr>
<tr><td><td><td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/database.gif</tr>
<tr><td><img src='ide/db.mysql/src/org/netbeans/modules/db/mysql/resources/catalog.gif'><td>16x16<td>ide/db.mysql/src/org/netbeans/modules/db/mysql/resources/catalog.gif</tr>
<tr><td><td><td>ide/db/src/org/netbeans/modules/db/resources/catalog.gif</tr>
<tr><td><td><td>ide/derby/src/org/netbeans/modules/derby/resources/catalog.gif</tr>
<tr><td><img src='ide/db.sql.editor/src/org/netbeans/modules/db/sql/editor/completion/resources/catalog.png'><td>16x16<td>ide/db.sql.editor/src/org/netbeans/modules/db/sql/editor/completion/resources/catalog.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/catalog.png</tr>
<tr><td><img src='ide/git/src/org/netbeans/modules/git/resources/icons/repository.png'><td>16x16<td>ide/git/src/org/netbeans/modules/git/resources/icons/repository.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/sqlWindow.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/sqlWindow.png</tr>
<tr style='background: #eee'><td rowspan='45'>warning<td rowspan='45'><img src='contrib/websvc.wsitconf/src/org/netbeans/modules/websvc/wsitconf/resources/warning.svg'><td><img src='contrib/websvc.wsitconf/src/org/netbeans/modules/websvc/wsitconf/resources/warning.gif'><td>16x16<td>contrib/websvc.wsitconf/src/org/netbeans/modules/websvc/wsitconf/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/warningIcon.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/javaee.project/src/org/netbeans/modules/javaee/project/ui/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/micronaut/src/org/netbeans/modules/micronaut/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>ide/bugtracking.bridge/src/org/netbeans/modules/bugtracking/bridge/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>ide/bugzilla/src/org/netbeans/modules/bugzilla/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>ide/dlight.nativeexecution.nb/src/org/netbeans/modules/nativeexecution/impl/exclamation.gif</tr>
<tr style='background: #eee'><td><td><td>ide/jumpto/src/org/netbeans/modules/jumpto/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>ide/localtasks/src/org/netbeans/modules/localtasks/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>ide/mercurial/src/org/netbeans/modules/mercurial/resources/icons/warning.gif</tr>
<tr style='background: #eee'><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/warning.gif</tr>
<tr style='background: #eee'><td><td><td>java/beans/src/org/netbeans/modules/beans/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>java/form/src/org/netbeans/modules/form/layoutsupport/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>java/j2ee.persistence/src/org/netbeans/modules/j2ee/persistence/ui/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/warning.png</tr>
<tr style='background: #eee'><td><td><td>java/spring.beans/src/org/netbeans/modules/spring/beans/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>nb/autoupdate.pluginimporter/src/org/netbeans/modules/autoupdate/pluginimporter/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/warning.png</tr>
<tr style='background: #eee'><td><img src='groovy/groovy.refactoring/src/org/netbeans/modules/groovy/refactoring/resources/warning_16.png'><td>16x16<td>groovy/groovy.refactoring/src/org/netbeans/modules/groovy/refactoring/resources/warning_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/warning_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/wrong_pass.png</tr>
<tr style='background: #eee'><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/wrong_pass.png</tr>
<tr style='background: #eee'><td><td><td>java/junit/src/org/netbeans/modules/junit/output/res/warning_16.png</tr>
<tr style='background: #eee'><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/warning_16.png</tr>
<tr style='background: #eee'><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/warning.gif'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/warning.gif</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/editor/completion/warning.png</tr>
<tr style='background: #eee'><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/verifier-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/warning-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/warning-glyph.gif</tr>
<tr style='background: #eee'><td><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/warning.gif'><td>16x16<td>ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/warning.gif</tr>
<tr style='background: #eee'><td><img src='ide/extbrowser/src/org/netbeans/modules/extbrowser/resources/warning.png'><td>16x16<td>ide/extbrowser/src/org/netbeans/modules/extbrowser/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/warning.gif</tr>
<tr style='background: #eee'><td><td><td>platform/core.windows/src/org/netbeans/core/windows/resources/warning.png</tr>
<tr style='background: #eee'><td><td><td>platform/openide.dialogs/src/org/netbeans/modules/dialogs/warning.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/extbrowser.chrome/src/org/netbeans/modules/extbrowser/chrome/resources/warning.png</tr>
<tr style='background: #eee'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/broken-reference.gif'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/broken-reference.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/broken-reference.gif</tr>
<tr style='background: #eee'><td><img src='nbi/engine/src/org/netbeans/installer/wizard/components/panels/warning.png'><td>16x16<td>nbi/engine/src/org/netbeans/installer/wizard/components/panels/warning.png</tr>
<tr style='background: #eee'><td><img src='java/java.hints/src/org/netbeans/modules/java/hints/resources/half-match.png'><td>16x16<td>java/java.hints/src/org/netbeans/modules/java/hints/resources/half-match.png</tr>
<tr style='background: #eee'><td><img src='java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/error.gif'><td>16x16<td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/error.gif</tr>
<tr><td rowspan='23'>refresh<td rowspan='23'><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/refresh.svg'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/refresh.png'><td>16x16<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/refresh.png</tr>
<tr><td><td><td>ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/diff-refresh.png</tr>
<tr><td><td><td>ide/diff/src/org/netbeans/modules/diff/builtin/visualizer/editable/refresh.png</tr>
<tr><td><td><td>ide/git/src/org/netbeans/modules/git/resources/icons/refresh.png</tr>
<tr><td><td><td>ide/mercurial/src/org/netbeans/modules/mercurial/resources/icons/refresh.png</tr>
<tr><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/refresh.png</tr>
<tr><td><td><td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/refresh.png</tr>
<tr><td><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/refresh.png'><td>16x16<td>enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/refresh.png</tr>
<tr><td><td><td>enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/refresh.png</tr>
<tr><td><td><td>enterprise/payara.common/src/org/netbeans/modules/payara/common/resources/refresh.png</tr>
<tr><td><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/restart.png'><td>16x16<td>extide/gradle/src/org/netbeans/modules/gradle/resources/restart.png</tr>
<tr><td><td><td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/restart.png</tr>
<tr><td><td><td>platform/core.windows/src/org/netbeans/core/windows/resources/restart.png</tr>
<tr><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/refresh.png'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/refresh.png</tr>
<tr><td><td><td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/refresh.png</tr>
<tr><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/refresh.png</tr>
<tr><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/refresh.png</tr>
<tr><td><img src='ide/db.dataview/src/org/netbeans/modules/db/dataview/images/refresh.png'><td>16x16<td>ide/db.dataview/src/org/netbeans/modules/db/dataview/images/refresh.png</tr>
<tr><td><img src='java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/refresh.png'><td>16x16<td>java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/refresh.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/refresh.png</tr>
<tr><td><td><td>profiler/profiler.heapwalker/src/org/netbeans/modules/profiler/heapwalk/ui/icons/impl/loop.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/updateNow.png</tr>
<tr><td><img src='enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/update.gif'><td>16x16<td>enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/update.gif</tr>
<tr style='background: #eee'><td rowspan='6'>trash<td rowspan='6'><img src='enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/delete.svg'><td><img src='enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/delete.gif'><td>16x16<td>enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/delete.gif</tr>
<tr style='background: #eee'><td><td><td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/delete.gif</tr>
<tr style='background: #eee'><td><td><td>platform/core.windows/src/org/netbeans/core/windows/resources/delete.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.actions/src/org/openide/resources/actions/delete.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/web.webkit.tooling/src/org/netbeans/modules/web/webkit/tooling/networkmonitor/delete.gif</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/runGC.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/runGC.png</tr>
<tr><td rowspan='1'>originalSize<td rowspan='1'><img src='ide/image/src/org/netbeans/modules/image/originalSize.svg'><td><img src='ide/image/src/org/netbeans/modules/image/originalSize.gif'><td>16x16<td>ide/image/src/org/netbeans/modules/image/originalSize.gif</tr>
<tr style='background: #eee'><td rowspan='7'>zoomIn<td rowspan='7'><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_in.svg'><td><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_in.png'><td>16x16<td>enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_in.png</tr>
<tr style='background: #eee'><td><img src='ide/image/src/org/netbeans/modules/image/zoomIn.gif'><td>16x16<td>ide/image/src/org/netbeans/modules/image/zoomIn.gif</tr>
<tr style='background: #eee'><td><td><td>java/debugger.jpda.visual/src/org/netbeans/modules/debugger/jpda/visual/resources/zoomIn.gif</tr>
<tr style='background: #eee'><td><img src='platform/print/src/org/netbeans/modules/print/util/image/plus.gif'><td>16x16<td>platform/print/src/org/netbeans/modules/print/util/image/plus.gif</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/zoomIn.png</tr>
<tr style='background: #eee'><td><img src='java/java.module.graph/src/org/netbeans/modules/java/module/graph/resources/zoomin.gif'><td>16x16<td>java/java.module.graph/src/org/netbeans/modules/java/module/graph/resources/zoomin.gif</tr>
<tr style='background: #eee'><td><td><td>java/maven.graph/src/org/netbeans/modules/maven/graph/zoomin.gif</tr>
<tr><td rowspan='7'>zoomOut<td rowspan='7'><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_out.svg'><td><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_out.png'><td>16x16<td>enterprise/websvc.design/src/org/netbeans/modules/websvc/design/view/resources/zoom_out.png</tr>
<tr><td><img src='ide/image/src/org/netbeans/modules/image/zoomOut.gif'><td>16x16<td>ide/image/src/org/netbeans/modules/image/zoomOut.gif</tr>
<tr><td><td><td>java/debugger.jpda.visual/src/org/netbeans/modules/debugger/jpda/visual/resources/zoomOut.gif</tr>
<tr><td><img src='java/java.module.graph/src/org/netbeans/modules/java/module/graph/resources/zoomout.gif'><td>16x16<td>java/java.module.graph/src/org/netbeans/modules/java/module/graph/resources/zoomout.gif</tr>
<tr><td><td><td>java/maven.graph/src/org/netbeans/modules/maven/graph/zoomout.gif</tr>
<tr><td><img src='platform/print/src/org/netbeans/modules/print/util/image/minus.gif'><td>16x16<td>platform/print/src/org/netbeans/modules/print/util/image/minus.gif</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/zoomOut.png</tr>
<tr style='background: #eee'><td rowspan='8'>find<td rowspan='8'><img src='platform/openide.actions/src/org/openide/resources/actions/find.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/find.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/find.gif</tr>
<tr style='background: #eee'><td><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/quicksearch/newQuickSearch.png'><td>16x16<td>apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/quicksearch/newQuickSearch.png</tr>
<tr style='background: #eee'><td><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/find16.png'><td>16x16<td>ide/notifications/src/org/netbeans/modules/notifications/resources/find16.png</tr>
<tr style='background: #eee'><td><img src='ide/o.openidex.util/src/org/openidex/resources/find.gif'><td>16x16<td>ide/o.openidex.util/src/org/openidex/resources/find.gif</tr>
<tr style='background: #eee'><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/query.gif</tr>
<tr style='background: #eee'><td><img src='platform/api.search/src/org/netbeans/modules/search/res/context.gif'><td>16x16<td>platform/api.search/src/org/netbeans/modules/search/res/context.gif</tr>
<tr style='background: #eee'><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/find.gif</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/find.gif</tr>
<tr><td rowspan='5'>find15x14<td rowspan='5'><img src='ide/css.visual/src/org/netbeans/modules/css/visual/resources/find.svg'><td><img src='ide/css.visual/src/org/netbeans/modules/css/visual/resources/find.png'><td>15x14<td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/find.png</tr>
<tr><td><td><td>ide/notifications/src/org/netbeans/modules/notifications/resources/find.png</tr>
<tr><td><td><td>platform/openide.awt/src/org/openide/awt/resources/quicksearch/find.png</tr>
<tr><td><td><td>platform/openide.explorer/src/org/openide/explorer/view/find.png</tr>
<tr><td><td><td>webcommon/web.inspect/src/org/netbeans/modules/web/inspect/resources/find.png</tr>
<tr style='background: #eee'><td rowspan='2'>findDropdown<td rowspan='2'><img src='platform/openide.awt/src/org/openide/awt/resources/quicksearch/findMenu.svg'><td><img src='platform/openide.awt/src/org/openide/awt/resources/quicksearch/findMenu.png'><td>19x14<td>platform/openide.awt/src/org/openide/awt/resources/quicksearch/findMenu.png</tr>
<tr style='background: #eee'><td><td><td>platform/openide.explorer/src/org/openide/explorer/view/findMenu.png</tr>
<tr><td rowspan='4'>findNext<td rowspan='4'><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_next.svg'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_next.png'><td>16x16<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_next.png</tr>
<tr><td><td><td>ide/editor.search/src/org/netbeans/modules/editor/search/resources/find_next.png</tr>
<tr><td><td><td>ide/lib.terminalemulator/src/org/netbeans/lib/terminalemulator/support/find_next.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/findNext.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/findNext.png</tr>
<tr style='background: #eee'><td rowspan='4'>findPrevious<td rowspan='4'><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_previous.svg'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_previous.png'><td>16x16<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/find_previous.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor.search/src/org/netbeans/modules/editor/search/resources/find_previous.png</tr>
<tr style='background: #eee'><td><td><td>ide/lib.terminalemulator/src/org/netbeans/lib/terminalemulator/support/find_previous.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/findPrevious.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/findPrevious.png</tr>
<tr><td rowspan='1'>bookmark<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmark_16.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmark_16.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmark_16.png</tr>
<tr style='background: #eee'><td rowspan='1'>bookmarksTable<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTable.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTable.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTable.png</tr>
<tr><td rowspan='2'>bookmarksTree<td rowspan='2'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTree.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTree.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/bookmarksTree.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/callTreeTab.png</tr>
<tr style='background: #eee'><td rowspan='1'>clearBookmark<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/clear_bookmark.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/clear_bookmark.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/clear_bookmark.png</tr>
<tr><td rowspan='1'>nextBookmark<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/next_bookmark.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/next_bookmark.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/next_bookmark.png</tr>
<tr style='background: #eee'><td rowspan='1'>previousBookmark<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/previous_bookmark.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/previous_bookmark.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/previous_bookmark.png</tr>
<tr><td rowspan='1'>toggleBookmark<td rowspan='1'><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/toggle_bookmark.svg'><td><img src='ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/toggle_bookmark.png'><td>16x16<td>ide/editor.bookmarks/src/org/netbeans/modules/editor/bookmarks/resources/toggle_bookmark.png</tr>
<tr style='background: #eee'><td rowspan='1'>breadcrumbSeparator<td rowspan='1'><img src='ide/editor.breadcrumbs/src/org/netbeans/modules/editor/breadcrumbs/resources/separator.svg'><td><img src='ide/editor.breadcrumbs/src/org/netbeans/modules/editor/breadcrumbs/resources/separator.png'><td>11x17<td>ide/editor.breadcrumbs/src/org/netbeans/modules/editor/breadcrumbs/resources/separator.png</tr>
<tr><td rowspan='6'>openInExternalBrowser<td rowspan='6'><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_in_external_browser.svg'><td><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_in_external_browser.png'><td>16x16<td>ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_in_external_browser.png</tr>
<tr><td><td><td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/open_in_external_browser.png</tr>
<tr><td><img src='ide/html.editor/src/org/netbeans/modules/html/editor/resources/htmlView.gif'><td>16x16<td>ide/html.editor/src/org/netbeans/modules/html/editor/resources/htmlView.gif</tr>
<tr><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/htmlView.gif</tr>
<tr><td><td><td>platform/o.n.core/src/org/netbeans/core/resources/actions/htmlView.gif</tr>
<tr><td><td><td>platform/openide.awt/src/org/openide/resources/html/htmlView.gif</tr>
<tr style='background: #eee'><td rowspan='2'>openSourceInEditor<td rowspan='2'><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_source_in_editor.svg'><td><img src='ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_source_in_editor.png'><td>16x16<td>ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/open_source_in_editor.png</tr>
<tr style='background: #eee'><td><td><td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/open_source_in_editor.png</tr>
<tr><td rowspan='3'>startMacroRecording<td rowspan='3'><img src='ide/editor.macros/src/org/netbeans/modules/editor/macros/start_macro_recording.svg'><td><img src='ide/editor.macros/src/org/netbeans/modules/editor/macros/start_macro_recording.png'><td>16x16<td>ide/editor.macros/src/org/netbeans/modules/editor/macros/start_macro_recording.png</tr>
<tr><td><td><td>ide/editor.macros/src/org/netbeans/modules/editor/macros/storage/ui/start_macro_recording.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/start_macro_recording.png</tr>
<tr style='background: #eee'><td rowspan='3'>stopMacroRecording<td rowspan='3'><img src='ide/editor.macros/src/org/netbeans/modules/editor/macros/stop_macro_recording.svg'><td><img src='ide/editor.macros/src/org/netbeans/modules/editor/macros/stop_macro_recording.png'><td>16x16<td>ide/editor.macros/src/org/netbeans/modules/editor/macros/stop_macro_recording.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor.macros/src/org/netbeans/modules/editor/macros/storage/ui/stop_macro_recording.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/stop_macro_recording.png</tr>
<tr><td rowspan='1'>findSelection<td rowspan='1'><img src='ide/editor.search/src/org/netbeans/modules/editor/search/resources/find_selection.svg'><td><img src='ide/editor.search/src/org/netbeans/modules/editor/search/resources/find_selection.png'><td>16x16<td>ide/editor.search/src/org/netbeans/modules/editor/search/resources/find_selection.png</tr>
<tr style='background: #eee'><td rowspan='1'>toggleHighlight<td rowspan='1'><img src='ide/editor.search/src/org/netbeans/modules/editor/search/resources/toggle_highlight.svg'><td><img src='ide/editor.search/src/org/netbeans/modules/editor/search/resources/toggle_highlight.png'><td>16x16<td>ide/editor.search/src/org/netbeans/modules/editor/search/resources/toggle_highlight.png</tr>
<tr><td rowspan='1'>commentInsert<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/comment.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/comment.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/comment.png</tr>
<tr style='background: #eee'><td rowspan='1'>lastEditLocation<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/last_edit_location_16.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/last_edit_location_16.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/last_edit_location_16.png</tr>
<tr><td rowspan='1'>navigateBack<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/navigate_back_16.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/navigate_back_16.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/navigate_back_16.png</tr>
<tr style='background: #eee'><td rowspan='1'>navigateForward<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/navigate_forward_16.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/navigate_forward_16.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/navigate_forward_16.png</tr>
<tr><td rowspan='1'>rectSelect<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/rect_select_16x16.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/rect_select_16x16.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/rect_select_16x16.png</tr>
<tr style='background: #eee'><td rowspan='1'>shiftLineLeft<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/shift_line_left.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/shift_line_left.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/shift_line_left.png</tr>
<tr><td rowspan='1'>shiftLineRight<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/shift_line_right.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/shift_line_right.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/shift_line_right.png</tr>
<tr style='background: #eee'><td rowspan='1'>commentRemove<td rowspan='1'><img src='ide/editor/src/org/netbeans/modules/editor/resources/uncomment.svg'><td><img src='ide/editor/src/org/netbeans/modules/editor/resources/uncomment.png'><td>16x16<td>ide/editor/src/org/netbeans/modules/editor/resources/uncomment.png</tr>
<tr><td rowspan='1'>cloud<td rowspan='1'><img src='ide/server/src/org/netbeans/modules/server/ui/resources/cloud.svg'><td><img src='ide/server/src/org/netbeans/modules/server/ui/resources/cloud.png'><td>16x16<td>ide/server/src/org/netbeans/modules/server/ui/resources/cloud.png</tr>
<tr style='background: #eee'><td rowspan='3'>hierarchy<td rowspan='3'><img src='java/debugger.jpda.visual/src/org/netbeans/modules/debugger/jpda/visual/resources/hierarchy.svg'><td><img src='java/debugger.jpda.visual/src/org/netbeans/modules/debugger/jpda/visual/resources/hierarchy.png'><td>16x16<td>java/debugger.jpda.visual/src/org/netbeans/modules/debugger/jpda/visual/resources/hierarchy.png</tr>
<tr style='background: #eee'><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/categorize.png'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/categorize.png</tr>
<tr style='background: #eee'><td><td><td>ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/groups.png</tr>
<tr><td rowspan='7'>plus<td rowspan='7'><img src='java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/plus.svg'><td><img src='java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/plus.png'><td>14x14<td>java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/plus.png</tr>
<tr><td><img src='webcommon/web.clientproject.api/src/org/netbeans/modules/web/clientproject/ui/resources/add.png'><td>14x14<td>webcommon/web.clientproject.api/src/org/netbeans/modules/web/clientproject/ui/resources/add.png</tr>
<tr><td><img src='ide/css.visual/src/org/netbeans/modules/css/visual/resources/plus.gif'><td>16x16<td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/plus.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/beansButton.gif</tr>
<tr><td><img src='ide/db/src/org/netbeans/modules/db/resources/addConnection.png'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/addConnection.png</tr>
<tr><td><img src='platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/add.png'><td>16x16<td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/add.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/add.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/add.png</tr>
<tr style='background: #eee'><td rowspan='4'>minus<td rowspan='4'><img src='java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/minus.svg'><td><img src='java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/minus.png'><td>14x14<td>java/form/src/org/netbeans/modules/form/layoutsupport/griddesigner/resources/minus.png</tr>
<tr style='background: #eee'><td><img src='java/form/src/org/netbeans/modules/form/layoutsupport/resources/minus.gif'><td>12x12<td>java/form/src/org/netbeans/modules/form/layoutsupport/resources/minus.gif</tr>
<tr style='background: #eee'><td><img src='platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/remove.png'><td>16x16<td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/remove.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/remove.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/remove.png</tr>
<tr><td rowspan='3'>columns<td rowspan='3'><img src='platform/o.n.swing.outline/src/org/netbeans/swing/etable/columns.svg'><td><img src='platform/o.n.swing.outline/src/org/netbeans/swing/etable/columns.gif'><td>16x16<td>platform/o.n.swing.outline/src/org/netbeans/swing/etable/columns.gif</tr>
<tr><td><td><td>platform/openide.explorer/src/org/netbeans/modules/openide/explorer/columns.gif</tr>
<tr><td><img src='ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/commons/resources/columns_16.png'><td>13x16<td>ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/commons/resources/columns_16.png</tr>
<tr style='background: #eee'><td rowspan='3'>print<td rowspan='3'><img src='platform/openide.actions/src/org/openide/resources/actions/print.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/print.png'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/print.png</tr>
<tr style='background: #eee'><td><img src='platform/openide.text/src/org/openide/text/printSettings.gif'><td>16x16<td>platform/openide.text/src/org/openide/text/printSettings.gif</tr>
<tr style='background: #eee'><td><img src='platform/print/src/org/netbeans/modules/print/util/image/print.gif'><td>16x16<td>platform/print/src/org/netbeans/modules/print/util/image/print.gif</tr>
<tr><td rowspan='2'>redo<td rowspan='2'><img src='platform/openide.actions/src/org/openide/resources/actions/redo.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/redo.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/redo.gif</tr>
<tr><td><img src='java/performance/actionsframework/src/org/netbeans/actions/examples/icons/redo.gif'><td>16x16<td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/redo.gif</tr>
<tr style='background: #eee'><td rowspan='4'>undo<td rowspan='4'><img src='platform/openide.actions/src/org/openide/resources/actions/undo.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/undo.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/undo.gif</tr>
<tr style='background: #eee'><td><img src='php/php.project/src/org/netbeans/modules/php/project/ui/resources/reset.png'><td>16x16<td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/reset.png</tr>
<tr style='background: #eee'><td><img src='ide/versioning.ui/src/org/netbeans/modules/versioning/ui/diff/rollback.png'><td>16x16<td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/diff/rollback.png</tr>
<tr style='background: #eee'><td><img src='java/performance/actionsframework/src/org/netbeans/actions/examples/icons/undo.gif'><td>16x16<td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/undo.gif</tr>
<tr><td rowspan='15'>configBadge8x8<td rowspan='15'><img src='java/java.source/src/org/netbeans/modules/java/resources/needs-compile.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/resources/needs-compile.gif'><td>8x8<td>java/java.source/src/org/netbeans/modules/java/resources/needs-compile.gif</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/needs-compile.png</tr>
<tr><td><img src='apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/config-badge.gif'><td>8x8<td>apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/resources/config-badge.gif</tr>
<tr><td><td><td>apisupport/maven.apisupport/src/org/netbeans/modules/maven/apisupport/config-badge.gif</tr>
<tr><td><td><td>enterprise/j2ee.api.ejbmodule/src/org/netbeans/modules/j2ee/ejbjar/project/ui/ejbjar.gif</tr>
<tr><td><td><td>enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/archive.gif</tr>
<tr><td><td><td>enterprise/web.project/src/org/netbeans/modules/web/project/ui/resources/config-badge.gif</tr>
<tr><td><td><td>ide/web.common.ui/src/org/netbeans/modules/web/common/ui/resources/config-badge.gif</tr>
<tr><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/config-badge.gif</tr>
<tr><td><td><td>rust/rust.project.api/src/org/netbeans/modules/rust/project/api/config-badge.gif</tr>
<tr><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/resources/config-badge.gif</tr>
<tr><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/ui/resources/config-badge.gif</tr>
<tr><td><img src='contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/projectfilesBadge.png'><td>8x8<td>contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/projectfilesBadge.png</tr>
<tr><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/buildscripts-badge.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/projectfiles-badge.png</tr>
<tr style='background: #eee'><td rowspan='38'>error<td rowspan='38'><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/error.svg'><td><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/error.gif'><td>16x16<td>apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/error_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/resources/error_16.png</tr>
<tr style='background: #eee'><td><td><td>java/junit/src/org/netbeans/modules/junit/output/res/error_16.png</tr>
<tr style='background: #eee'><td><td><td>nbi/engine/src/org/netbeans/installer/wizard/components/panels/error.png</tr>
<tr style='background: #eee'><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/error.gif</tr>
<tr style='background: #eee'><td><td><td>platform/core.ui/src/org/netbeans/core/ui/options/general/error_16.png</tr>
<tr style='background: #eee'><td><td><td>platform/core.ui/src/org/netbeans/core/ui/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>platform/core.windows/src/org/netbeans/core/windows/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>platform/openide.dialogs/src/org/netbeans/modules/dialogs/error.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/resources/error.png'><td>16x16<td>enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>ide/tasklist.todo/src/org/netbeans/modules/tasklist/todo/settings/error.png</tr>
<tr style='background: #eee'><td><td><td>ide/team.commons/src/org/netbeans/modules/team/commons/resources/error.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/errorIcon.png'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/errorIcon.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/javaee.project/src/org/netbeans/modules/javaee/project/ui/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/bugtracking/src/org/netbeans/modules/bugtracking/ui/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/bugzilla/src/org/netbeans/modules/bugzilla/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/dlight.nativeexecution.nb/src/org/netbeans/modules/nativeexecution/impl/error.png</tr>
<tr style='background: #eee'><td><td><td>ide/localtasks/src/org/netbeans/modules/localtasks/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spellchecker/src/org/netbeans/modules/spellchecker/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/versioning.ui/src/org/netbeans/modules/versioning/ui/resources/icons/error.gif</tr>
<tr style='background: #eee'><td><td><td>ide/versioning.util/src/org/netbeans/modules/versioning/util/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/error.png</tr>
<tr style='background: #eee'><td><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/error.gif'><td>16x16<td>ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/error.gif</tr>
<tr style='background: #eee'><td><img src='ide/db/src/org/netbeans/modules/db/resources/errorIcon.png'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/errorIcon.png</tr>
<tr style='background: #eee'><td><td><td>ide/derby/src/org/netbeans/modules/derby/resources/errorIcon.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.cdnjs/src/org/netbeans/modules/javascript/cdnjs/ui/resources/broken.png</tr>
<tr style='background: #eee'><td><img src='ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/error.png'><td>16x16<td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>platform/lib.uihandler/src/org/netbeans/lib/uihandler/exception.gif</tr>
<tr style='background: #eee'><td><td><td>platform/o.n.core/src/org/netbeans/core/resources/exception.gif</tr>
<tr style='background: #eee'><td><img src='php/php.project/src/org/netbeans/modules/php/project/ui/resources/error.png'><td>16x16<td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/error.png</tr>
<tr style='background: #eee'><td><img src='ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/error-glyph.gif'><td>16x16<td>ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><img src='ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/error-glyph.gif'><td>16x16<td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/error.png</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/execute/ui/error.png</tr>
<tr><td rowspan='1'>aborted<td rowspan='1'><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/aborted.svg'><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/aborted.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/aborted.png</tr>
<tr style='background: #eee'><td rowspan='20'>errorGlyph<td rowspan='20'><img src='ide/xml.text/src/org/netbeans/modules/xml/text/completion/resources/error.svg'><td><img src='ide/xml.text/src/org/netbeans/modules/xml/text/completion/resources/error.gif'><td>16x16<td>ide/xml.text/src/org/netbeans/modules/xml/text/completion/resources/error.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/missing.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/resources/notFound.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/error-glyph.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/errorGlyph.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/errorGlyph.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/tomcat5/src/org/netbeans/modules/tomcat5/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/web.core/src/org/netbeans/modules/web/core/resources/xml_error_glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/css.visual/src/org/netbeans/modules/css/visual/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/languages/src/org/netbeans/modules/languages/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml/src/org/netbeans/modules/xml/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>java/beans/src/org/netbeans/modules/beans/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><td><td>platform/o.n.core/src/org/netbeans/core/resources/error-glyph.gif</tr>
<tr style='background: #eee'><td><img src='platform/openide.explorer/src/org/openide/resources/propertysheet/invalid.gif'><td>16x16<td>platform/openide.explorer/src/org/openide/resources/propertysheet/invalid.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.explorer/src/org/openide/resources/propertysheet/modified.gif</tr>
<tr><td rowspan='3'>warningGlyph<td rowspan='3'><img src='ide/languages/src/org/netbeans/modules/languages/resources/warning-glyph.svg'><td><img src='ide/languages/src/org/netbeans/modules/languages/resources/warning-glyph.gif'><td>16x16<td>ide/languages/src/org/netbeans/modules/languages/resources/warning-glyph.gif</tr>
<tr><td><td><td>ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/warning-glyph.gif</tr>
<tr><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/whitelist-glyph.gif</tr>
<tr style='background: #eee'><td rowspan='12'>question<td rowspan='12'><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahelp/newJavaHelp.svg'><td><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahelp/newJavaHelp.png'><td>16x16<td>apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahelp/newJavaHelp.png</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/execute/navigator/help.png</tr>
<tr style='background: #eee'><td><td><td>platform/javahelp/src/org/netbeans/modules/javahelp/resources/help.png</tr>
<tr style='background: #eee'><td><td><td>platform/openide.explorer/src/org/openide/resources/propertysheet/propertySheetHelp.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/customizerHelp.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/resources/customizerHelp.gif</tr>
<tr style='background: #eee'><td><td><td>ide/usersguide/src/org/netbeans/modules/usersguide/help.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/help.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.core/src/org/netbeans/core/resources/actions/about.gif'><td>16x16<td>platform/o.n.core/src/org/netbeans/core/resources/actions/about.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/web.jsf.navigation/src/org/netbeans/modules/web/jsf/navigation/graph/resources/question.png'><td>16x16<td>enterprise/web.jsf.navigation/src/org/netbeans/modules/web/jsf/navigation/graph/resources/question.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.bower/src/org/netbeans/modules/javascript/bower/ui/resources/unknown.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.cdnjs/src/org/netbeans/modules/javascript/cdnjs/ui/resources/unknown.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.nodejs/src/org/netbeans/modules/javascript/nodejs/ui/resources/unknown.png</tr>
<tr><td rowspan='25'>info<td rowspan='25'><img src='enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/resources/info.svg'><td><img src='enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/resources/info.png'><td>16x16<td>enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/resources/info.png</tr>
<tr><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/info.png</tr>
<tr><td><td><td>ide/bugzilla/src/org/netbeans/modules/bugzilla/resources/info.png</tr>
<tr><td><td><td>ide/git/src/org/netbeans/modules/git/resources/icons/info.png</tr>
<tr><td><td><td>ide/localtasks/src/org/netbeans/modules/localtasks/resources/info.png</tr>
<tr><td><td><td>ide/mercurial/src/org/netbeans/modules/mercurial/resources/icons/info.png</tr>
<tr><td><td><td>ide/subversion/src/org/netbeans/modules/subversion/resources/icons/info.png</tr>
<tr><td><td><td>ide/versioning.util/src/org/netbeans/modules/versioning/util/resources/info.png</tr>
<tr><td><td><td>java/java.j2semodule/src/org/netbeans/modules/java/j2semodule/ui/resources/info.png</tr>
<tr><td><td><td>java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/ui/resources/info.png</tr>
<tr><td><td><td>javafx/javafx2.project/src/org/netbeans/modules/javafx2/project/ui/resources/info.png</tr>
<tr><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/info.png</tr>
<tr><td><td><td>platform/core.windows/src/org/netbeans/core/windows/resources/info.png</tr>
<tr><td><td><td>platform/openide.dialogs/src/org/netbeans/modules/dialogs/info.png</tr>
<tr><td><img src='ide/db/src/org/netbeans/modules/db/resources/infoIcon.png'><td>16x16<td>ide/db/src/org/netbeans/modules/db/resources/infoIcon.png</tr>
<tr><td><td><td>ide/derby/src/org/netbeans/modules/derby/resources/infoIcon.png</tr>
<tr><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/debuggingView/info_big.png'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/debuggingView/info_big.png</tr>
<tr><td><td><td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/evaluator/eval_history.png</tr>
<tr><td><img src='nb/autoupdate.pluginimporter/src/org/netbeans/modules/autoupdate/pluginimporter/resources/info_icon.png'><td>14x14<td>nb/autoupdate.pluginimporter/src/org/netbeans/modules/autoupdate/pluginimporter/resources/info_icon.png</tr>
<tr><td><td><td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/info_icon.png</tr>
<tr><td><img src='nbi/engine/src/org/netbeans/installer/wizard/components/panels/info.png'><td>16x16<td>nbi/engine/src/org/netbeans/installer/wizard/components/panels/info.png</tr>
<tr><td><img src='php/php.project/src/org/netbeans/modules/php/project/ui/resources/info_icon.png'><td>16x16<td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/info_icon.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/infoIcon.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/infoIcon.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/infoTab.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/infoTab.png</tr>
<tr><td><img src='php/php.project/src/org/netbeans/modules/php/project/ui/resources/header_info.png'><td>13x13<td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/header_info.png</tr>
<tr style='background: #eee'><td rowspan='13'>ok<td rowspan='13'><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_16.svg'><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_16.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_16.png</tr>
<tr style='background: #eee'><td><td><td>java/junit/src/org/netbeans/modules/junit/output/res/ok_16.png</tr>
<tr style='background: #eee'><td><td><td>platform/core.ui/src/org/netbeans/core/ui/options/general/ok_16.png</tr>
<tr style='background: #eee'><td><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/ok.gif'><td>18x16<td>ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/ok.gif</tr>
<tr style='background: #eee'><td><img src='webcommon/javascript.bower/src/org/netbeans/modules/javascript/bower/ui/resources/uptodate.gif'><td>16x16<td>webcommon/javascript.bower/src/org/netbeans/modules/javascript/bower/ui/resources/uptodate.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.cdnjs/src/org/netbeans/modules/javascript/cdnjs/ui/resources/uptodate.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.nodejs/src/org/netbeans/modules/javascript/nodejs/ui/resources/uptodate.gif</tr>
<tr style='background: #eee'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/resolved-reference.gif'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/resolved-reference.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/resolved-reference.gif</tr>
<tr style='background: #eee'><td><img src='java/java.hints/src/org/netbeans/modules/java/hints/resources/match.png'><td>16x16<td>java/java.hints/src/org/netbeans/modules/java/hints/resources/match.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/setFilterHighl.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/setFilterHighl.png</tr>
<tr style='background: #eee'><td><img src='platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/active.png'><td>16x16<td>platform/autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/resources/active.png</tr>
<tr style='background: #eee'><td><img src='java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/ok.gif'><td>16x16<td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/ok.gif</tr>
<tr><td rowspan='13'>lightbulb<td rowspan='13'><img src='java/form/src/org/netbeans/modules/form/resources/lightbulb.svg'><td><img src='java/form/src/org/netbeans/modules/form/resources/lightbulb.gif'><td>16x16<td>java/form/src/org/netbeans/modules/form/resources/lightbulb.gif</tr>
<tr><td><td><td>java/java.graph/src/org/netbeans/modules/java/graph/resources/bulb.gif</tr>
<tr><td><img src='ide/spi.tasklist/src/org/netbeans/modules/tasklist/trampoline/unknown.gif'><td>16x16<td>ide/spi.tasklist/src/org/netbeans/modules/tasklist/trampoline/unknown.gif</tr>
<tr><td><td><td>ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/task.gif</tr>
<tr><td><img src='php/php.smarty/src/org/netbeans/modules/php/smarty/resources/tpl-cc-icon.png'><td>15x15<td>php/php.smarty/src/org/netbeans/modules/php/smarty/resources/tpl-cc-icon.png</tr>
<tr><td><img src='java/java.graph/src/org/netbeans/modules/java/graph/resources/bulb-highlight.gif'><td>16x16<td>java/java.graph/src/org/netbeans/modules/java/graph/resources/bulb-highlight.gif</tr>
<tr><td><img src='platform/lib.uihandler/src/org/netbeans/lib/uihandler/def.png'><td>16x16<td>platform/lib.uihandler/src/org/netbeans/lib/uihandler/def.png</tr>
<tr><td><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/suggestion.png'><td>16x16<td>apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/suggestion.png</tr>
<tr><td><td><td>ide/editor.completion/src/org/netbeans/modules/editor/completion/resources/suggestion.png</tr>
<tr><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/suggestion.gif</tr>
<tr><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/suggestion.png</tr>
<tr><td><td><td>java/java.hints/src/org/netbeans/modules/java/hints/analyzer/ui/suggestion.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/resources/suggestion.png</tr>
<tr style='background: #eee'><td rowspan='3'>lightbulbError<td rowspan='3'><img src='ide/csl.api/src/org/netbeans/modules/csl/core/error-sg.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/core/error-sg.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/core/error-sg.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/error-sg.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/error-sg.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/error-sg.gif</tr>
<tr><td rowspan='3'>lightbulbWarning<td rowspan='3'><img src='ide/csl.api/src/org/netbeans/modules/csl/core/warning-sg.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/core/warning-sg.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/core/warning-sg.gif</tr>
<tr><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/verifier-sg.gif</tr>
<tr><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/warning-sg.gif</tr>
<tr style='background: #eee'><td rowspan='12'>globe<td rowspan='12'><img src='ide/extbrowser/src/org/netbeans/modules/extbrowser/resources/browser_generic_16x.svg'><td><img src='ide/extbrowser/src/org/netbeans/modules/extbrowser/resources/browser_generic_16x.png'><td>16x16<td>ide/extbrowser/src/org/netbeans/modules/extbrowser/resources/browser_generic_16x.png</tr>
<tr style='background: #eee'><td><td><td>ide/web.browser.api/src/org/netbeans/modules/web/browser/ui/resources/browser_generic_16x.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/web.clientproject.api/src/org/netbeans/modules/web/clientproject/browser/browser_generic_16x.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/ServletIcon.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/ServletIcon.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/resources/ServletRefIcon16.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/web.project/src/org/netbeans/modules/web/project/ui/resources/webProjectIcon.gif'><td>16x16<td>enterprise/web.project/src/org/netbeans/modules/web/project/ui/resources/webProjectIcon.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/resources/web.gif</tr>
<tr style='background: #eee'><td><img src='webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/ui/resources/html5-project.png'><td>16x16<td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/ui/resources/html5-project.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/WebModuleNode.gif'><td>16x16<td>enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/WebModuleNode.gif</tr>
<tr style='background: #eee'><td><img src='nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/updateAction.gif'><td>16x16<td>nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/updateAction.gif</tr>
<tr style='background: #eee'><td><img src='ide/utilities/src/org/netbeans/modules/url/webLink.gif'><td>16x16<td>ide/utilities/src/org/netbeans/modules/url/webLink.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.core/src/org/netbeans/core/resources/frames/webbrowser.gif'><td>16x16<td>platform/o.n.core/src/org/netbeans/core/resources/frames/webbrowser.gif</tr>
<tr><td rowspan='1'>notifications<td rowspan='1'><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notifications.svg'><td><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notifications.png'><td>16x16<td>ide/notifications/src/org/netbeans/modules/notifications/resources/notifications.png</tr>
<tr style='background: #eee'><td rowspan='1'>notificationsError<td rowspan='1'><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsError.svg'><td><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsError.png'><td>16x16<td>ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsError.png</tr>
<tr><td rowspan='1'>notificationsPane<td rowspan='1'><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsTC.svg'><td><img src='ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsTC.png'><td>16x16<td>ide/notifications/src/org/netbeans/modules/notifications/resources/notificationsTC.png</tr>
<tr style='background: #eee'><td rowspan='2'>properties<td rowspan='2'><img src='platform/core.windows/src/org/netbeans/core/windows/resources/properties.svg'><td><img src='platform/core.windows/src/org/netbeans/core/windows/resources/properties.gif'><td>16x16<td>platform/core.windows/src/org/netbeans/core/windows/resources/properties.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.actions/src/org/openide/resources/actions/properties.gif</tr>
<tr><td rowspan='4'>restart<td rowspan='4'><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/restart.svg'><td><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/restart.png'><td>16x16<td>enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/restart.png</tr>
<tr><td><td><td>enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/restart.png</tr>
<tr><td><td><td>enterprise/payara.common/src/org/netbeans/modules/payara/common/resources/restart.png</tr>
<tr><td><td><td>java/jshell.support/src/org/netbeans/modules/jshell/resources/reset.png</tr>
<tr style='background: #eee'><td rowspan='10'>rerun<td rowspan='10'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/rerun.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/rerun.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/rerun.png</tr>
<tr style='background: #eee'><td><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/refresh.png'><td>16x16<td>extide/gradle/src/org/netbeans/modules/gradle/resources/refresh.png</tr>
<tr style='background: #eee'><td><td><td>extide/o.apache.tools.ant.module/src/org/apache/tools/ant/module/resources/rerun.png</tr>
<tr style='background: #eee'><td><td><td>ide/docker.ui/src/org/netbeans/modules/docker/ui/resources/action_rerun.png</tr>
<tr style='background: #eee'><td><td><td>ide/extexecution/src/org/netbeans/modules/extexecution/resources/rerun.png</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/rerun.png</tr>
<tr style='background: #eee'><td><td><td>ide/projectui/src/org/netbeans/modules/project/ui/resources/rerun.png</tr>
<tr style='background: #eee'><td><td><td>java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/jtreg/resources/rerun.png</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/execute/refresh.png</tr>
<tr style='background: #eee'><td><td><td>rust/rust.cargo/src/org/netbeans/modules/rust/cargo/output/resources/rerun.png</tr>
<tr><td rowspan='2'>outputPane<td rowspan='2'><img src='platform/core.io.ui/src/org/netbeans/core/io/ui/output.svg'><td><img src='platform/core.io.ui/src/org/netbeans/core/io/ui/output.png'><td>16x16<td>platform/core.io.ui/src/org/netbeans/core/io/ui/output.png</tr>
<tr><td><img src='platform/o.n.core/src/org/netbeans/core/resources/outputSettings.gif'><td>16x16<td>platform/o.n.core/src/org/netbeans/core/resources/outputSettings.gif</tr>
<tr style='background: #eee'><td rowspan='3'>copy<td rowspan='3'><img src='platform/openide.actions/src/org/openide/resources/actions/copy.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/copy.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/copy.gif</tr>
<tr style='background: #eee'><td><img src='java/performance/actionsframework/src/org/netbeans/actions/examples/icons/copy.gif'><td>16x16<td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/copy.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.core/src/org/netbeans/core/resources/copy.gif'><td>16x16<td>platform/o.n.core/src/org/netbeans/core/resources/copy.gif</tr>
<tr><td rowspan='2'>cut<td rowspan='2'><img src='platform/openide.actions/src/org/openide/resources/actions/cut.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/cut.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/cut.gif</tr>
<tr><td><img src='java/performance/actionsframework/src/org/netbeans/actions/examples/icons/cut.gif'><td>16x16<td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/cut.gif</tr>
<tr style='background: #eee'><td rowspan='2'>paste<td rowspan='2'><img src='platform/openide.actions/src/org/openide/resources/actions/paste.svg'><td><img src='platform/openide.actions/src/org/openide/resources/actions/paste.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/paste.gif</tr>
<tr style='background: #eee'><td><img src='java/performance/actionsframework/src/org/netbeans/actions/examples/icons/paste.gif'><td>16x16<td>java/performance/actionsframework/src/org/netbeans/actions/examples/icons/paste.gif</tr>
<tr><td rowspan='5'>newFolder<td rowspan='5'><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/add_category.svg'><td><img src='ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/add_category.png'><td>16x16<td>ide/bugtracking/src/org/netbeans/modules/bugtracking/tasks/resources/add_category.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/addFolder.png</tr>
<tr><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/newFolderIcon_mac.png'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/newFolderIcon_mac.png</tr>
<tr><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/newFolderIcon.gif'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/newFolderIcon.gif</tr>
<tr><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/newFolder.png'><td>16x16<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/newFolder.png</tr>
<tr style='background: #eee'><td rowspan='1'>error32<td rowspan='1'><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/error32.svg'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/error32.png'><td>32x32<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/error32.png</tr>
<tr><td rowspan='1'>question32<td rowspan='1'><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/question32.svg'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/question32.png'><td>32x32<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/question32.png</tr>
<tr style='background: #eee'><td rowspan='1'>info32<td rowspan='1'><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/info32.svg'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/info32.png'><td>32x32<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/info32.png</tr>
<tr><td rowspan='5'>warning32<td rowspan='5'><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/warning32.svg'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/warning32.png'><td>32x32<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/warning32.png</tr>
<tr><td><img src='enterprise/web.freeform/src/org/netbeans/modules/web/freeform/resources/alert_32.png'><td>32x32<td>enterprise/web.freeform/src/org/netbeans/modules/web/freeform/resources/alert_32.png</tr>
<tr><td><td><td>java/ant.freeform/src/org/netbeans/modules/ant/freeform/resources/alert_32.png</tr>
<tr><td><td><td>java/java.freeform/src/org/netbeans/modules/java/freeform/resources/alert_32.png</tr>
<tr><td><img src='webcommon/extbrowser.chrome/plugins/chrome/img/warnings/icon.png'><td>50x41<td>webcommon/extbrowser.chrome/plugins/chrome/img/warnings/icon.png</tr>
<tr style='background: #eee'><td rowspan='7'>filePlain<td rowspan='7'><img src='java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/newFile.svg'><td><img src='java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/newFile.png'><td>16x16<td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/newFile.png</tr>
<tr style='background: #eee'><td><td><td>platform/openide.nodes/src/org/openide/nodes/defaultNode.png</tr>
<tr style='background: #eee'><td><td><td>platform/templates/src/org/netbeans/modules/templates/resources/newFile.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler.ppoints/src/org/netbeans/modules/profiler/ppoints/ui/icons/globalProfilingPoint.png'><td>16x16<td>profiler/profiler.ppoints/src/org/netbeans/modules/profiler/ppoints/ui/icons/globalProfilingPoint.png</tr>
<tr style='background: #eee'><td><img src='ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/cur_editor_scope.png'><td>16x16<td>ide/tasklist.ui/src/org/netbeans/modules/tasklist/ui/resources/cur_editor_scope.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/emptyfile-icon.png'><td>13x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/emptyfile-icon.png</tr>
<tr style='background: #eee'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/filePlain.png'><td>16x16<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/filePlain.png</tr>
<tr><td rowspan='3'>folderUp<td rowspan='3'><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/upFolderIcon_mac.svg'><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/upFolderIcon_mac.png'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/upFolderIcon_mac.png</tr>
<tr><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/upFolderIcon.gif'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/upFolderIcon.gif</tr>
<tr><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/folderUp.png'><td>16x16<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/folderUp.png</tr>
<tr style='background: #eee'><td rowspan='3'>home<td rowspan='3'><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/homeIcon_mac.svg'><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/homeIcon_mac.png'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/homeIcon_mac.png</tr>
<tr style='background: #eee'><td><img src='ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/homeIcon.gif'><td>16x16<td>ide/o.n.swing.dirchooser/src/org/netbeans/swing/dirchooser/resources/homeIcon.gif</tr>
<tr style='background: #eee'><td><img src='platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/home.png'><td>16x16<td>platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/resources/home.png</tr>
<tr><td rowspan='10'>warningBadge8x8<td rowspan='10'><img src='enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/brokenProjectBadge.svg'><td><img src='enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/brokenProjectBadge.gif'><td>8x8<td>enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><td><td>enterprise/javaee.project/src/org/netbeans/modules/javaee/project/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><td><td>ide/projectui/src/org/netbeans/modules/project/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><td><td>java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/warning_badge.gif</tr>
<tr><td><td><td>java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/brokenProjectBadge.gif</tr>
<tr><td><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/warning-badge.png'><td>8x8<td>extide/gradle/src/org/netbeans/modules/gradle/resources/warning-badge.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/brokenProjectBadge.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/nodes/filteredResourceWarningBadge.png</tr>
<tr style='background: #eee'><td rowspan='1'>warningBadgeRight<td rowspan='1'><img src='enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/warningBadge.svg'><td><img src='enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/warningBadge.gif'><td>16x16<td>enterprise/web.monitor/src/org/netbeans/modules/web/monitor/client/icons/warningBadge.gif</tr>
<tr><td rowspan='16'>stop<td rowspan='16'><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/stop.svg'><td><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/stop.png'><td>16x16<td>enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/stop.png</tr>
<tr><td><td><td>enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/stop.png</tr>
<tr><td><td><td>enterprise/payara.common/src/org/netbeans/modules/payara/common/resources/stop.png</tr>
<tr><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/stop.png</tr>
<tr><td><td><td>extide/o.apache.tools.ant.module/src/org/apache/tools/ant/module/resources/stop.png</tr>
<tr><td><td><td>ide/docker.ui/src/org/netbeans/modules/docker/ui/resources/action_stop.png</tr>
<tr><td><td><td>ide/extexecution/src/org/netbeans/modules/extexecution/resources/stop.png</tr>
<tr><td><td><td>ide/projectui/src/org/netbeans/modules/project/ui/resources/stop.png</tr>
<tr><td><td><td>ide/refactoring.api/src/org/netbeans/modules/refactoring/api/resources/stop.png</tr>
<tr><td><td><td>java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/jtreg/resources/stop.png</tr>
<tr><td><td><td>java/jshell.support/src/org/netbeans/modules/jshell/resources/stop.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/execute/stop.png</tr>
<tr><td><td><td>platform/api.search/src/org/netbeans/modules/search/res/stop.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/stop.png</tr>
<tr><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Kill.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Kill.gif</tr>
<tr><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/cancel.png</tr>
<tr style='background: #eee'><td rowspan='4'>rerunMod<td rowspan='4'><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/refreshdebug.svg'><td><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/refreshdebug.png'><td>16x16<td>extide/gradle/src/org/netbeans/modules/gradle/resources/refreshdebug.png</tr>
<tr style='background: #eee'><td><td><td>extide/o.apache.tools.ant.module/src/org/apache/tools/ant/module/resources/rerun-mod.png</tr>
<tr style='background: #eee'><td><td><td>java/java.openjdk.project/src/org/netbeans/modules/java/openjdk/jtreg/resources/redebug.png</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/execute/refreshdebug.png</tr>
<tr><td rowspan='1'>continue<td rowspan='1'><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Continue.svg'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Continue.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Continue.gif</tr>
<tr style='background: #eee'><td rowspan='2'>pause<td rowspan='2'><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Pause.svg'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Pause.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Pause.gif</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/pause.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/pause.png</tr>
<tr><td rowspan='2'>fix<td rowspan='2'><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Fix.svg'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Fix.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/actions/Fix.gif</tr>
<tr><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/debugFix.gif'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/debugFix.gif</tr>
<tr style='background: #eee'><td rowspan='2'>fileMainClass<td rowspan='2'><img src='java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/main-class.svg'><td><img src='java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/main-class.png'><td>16x16<td>java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/main-class.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/main-class.png</tr>
<tr><td rowspan='7'>fileClass<td rowspan='7'><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/resources/class.svg'><td><img src='enterprise/websvc.design/src/org/netbeans/modules/websvc/design/resources/class.gif'><td>16x16<td>enterprise/websvc.design/src/org/netbeans/modules/websvc/design/resources/class.gif</tr>
<tr><td><td><td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/class.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/class.gif</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/class.png</tr>
<tr><td><td><td>nbbuild/javadoctools/siteresource/class.png</tr>
<tr><td><img src='enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/class.gif'><td>16x16<td>enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/class.gif</tr>
<tr><td><td><td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/class.gif</tr>
<tr style='background: #eee'><td rowspan='4'>fileEnum<td rowspan='4'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/enum.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/enum.png'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/enum.png</tr>
<tr style='background: #eee'><td><td><td>java/java.project/src/org/netbeans/spi/java/project/support/ui/templates/enum.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/enum_file.png</tr>
<tr style='background: #eee'><td><td><td>nbbuild/javadoctools/siteresource/enum.png</tr>
<tr><td rowspan='4'>fileInterface<td rowspan='4'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/interface.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/interface.png'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/templates/interface.png</tr>
<tr><td><td><td>java/java.project/src/org/netbeans/spi/java/project/support/ui/templates/interface.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/resources/interface_file.png</tr>
<tr><td><td><td>nbbuild/javadoctools/siteresource/interface.png</tr>
<tr style='background: #eee'><td rowspan='1'>fileAbstractClass<td rowspan='1'><img src='java/java.source/src/org/netbeans/modules/java/resources/abstract_class_file.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/resources/abstract_class_file.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/resources/abstract_class_file.png</tr>
<tr><td rowspan='7'>fileXML<td rowspan='7'><img src='ide/xml/src/org/netbeans/modules/xml/resources/xmlObject.svg'><td><img src='ide/xml/src/org/netbeans/modules/xml/resources/xmlObject.gif'><td>16x16<td>ide/xml/src/org/netbeans/modules/xml/resources/xmlObject.gif</tr>
<tr><td><td><td>java/maven.grammar/src/org/netbeans/modules/maven/grammar/xmlObject.gif</tr>
<tr><td><td><td>java/xml.jaxb/src/org/netbeans/modules/xml/jaxb/resources/XML_file.png</tr>
<tr><td><img src='platform/openide.loaders/src/org/openide/loaders/xmlObject.gif'><td>16x16<td>platform/openide.loaders/src/org/openide/loaders/xmlObject.gif</tr>
<tr><td><img src='java/j2ee.persistence/src/org/netbeans/modules/j2ee/persistence/dd/resources/persistenceCatalog.gif'><td>16x16<td>java/j2ee.persistence/src/org/netbeans/modules/j2ee/persistence/dd/resources/persistenceCatalog.gif</tr>
<tr><td><img src='ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/xmlObject.gif'><td>16x16<td>ide/xml.multiview/src/org/netbeans/modules/xml/multiview/resources/xmlObject.gif</tr>
<tr><td><td><td>ide/xml.text/src/org/netbeans/modules/xml/text/resources/xmlEditorOptions.gif</tr>
<tr style='background: #eee'><td rowspan='1'>filesTab<td rowspan='1'><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/filesTab.svg'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/filesTab.png'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/filesTab.png</tr>
<tr><td rowspan='1'>newFile<td rowspan='1'><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/newFile.svg'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/newFile.png'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/newFile.png</tr>
<tr style='background: #eee'><td rowspan='1'>project<td rowspan='1'><img src='ide/tasklist.projectint/src/org/netbeans/modules/tasklist/projectint/main_project_scope.svg'><td><img src='ide/tasklist.projectint/src/org/netbeans/modules/tasklist/projectint/main_project_scope.png'><td>16x16<td>ide/tasklist.projectint/src/org/netbeans/modules/tasklist/projectint/main_project_scope.png</tr>
<tr><td rowspan='2'>newProject<td rowspan='2'><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/project/newProject.svg'><td><img src='apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/project/newProject.png'><td>16x16<td>apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/project/newProject.png</tr>
<tr><td><td><td>ide/projectui/src/org/netbeans/modules/project/ui/resources/newProject.png</tr>
<tr style='background: #eee'><td rowspan='1'>runCurrentProject<td rowspan='1'><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/runCurrentProject.svg'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/runCurrentProject.gif'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/runCurrentProject.gif</tr>
<tr><td rowspan='8'>runProject<td rowspan='8'><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/runProject.svg'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/runProject.png'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/runProject.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/start.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/runButton.gif'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/runButton.gif</tr>
<tr><td><img src='platform/openide.actions/src/org/openide/resources/actions/execute.gif'><td>16x16<td>platform/openide.actions/src/org/openide/resources/actions/execute.gif</tr>
<tr><td><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/start.png'><td>16x16<td>enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/start.png</tr>
<tr><td><td><td>enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/start.png</tr>
<tr><td><td><td>enterprise/payara.common/src/org/netbeans/modules/payara/common/resources/start.png</tr>
<tr><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/run.gif'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/run.gif</tr>
<tr style='background: #eee'><td rowspan='2'>openProject<td rowspan='2'><img src='ergonomics/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/project.svg'><td><img src='ergonomics/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/project.png'><td>16x16<td>ergonomics/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/project.png</tr>
<tr style='background: #eee'><td><td><td>ide/projectui/src/org/netbeans/modules/project/ui/resources/openProject.png</tr>
<tr><td rowspan='4'>projectTab<td rowspan='4'><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/projectTab.svg'><td><img src='ide/projectui/src/org/netbeans/modules/project/ui/resources/projectTab.png'><td>16x16<td>ide/projectui/src/org/netbeans/modules/project/ui/resources/projectTab.png</tr>
<tr><td><td><td>ide/utilities.project/src/org/netbeans/modules/search/project/resources/all_projects.png</tr>
<tr><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/all_projects.png</tr>
<tr><td><img src='ide/tasklist.projectint/src/org/netbeans/modules/tasklist/projectint/opened_projects_scope.png'><td>16x16<td>ide/tasklist.projectint/src/org/netbeans/modules/tasklist/projectint/opened_projects_scope.png</tr>
<tr style='background: #eee'><td rowspan='1'>splitView<td rowspan='1'><img src='platform/core.multiview/src/org/netbeans/core/multiview/resources/splitview.svg'><td><img src='platform/core.multiview/src/org/netbeans/core/multiview/resources/splitview.png'><td>16x16<td>platform/core.multiview/src/org/netbeans/core/multiview/resources/splitview.png</tr>
<tr><td rowspan='5'>xmlValue<td rowspan='5'><img src='ide/xml.schema.completion/src/org/netbeans/modules/xml/schema/completion/resources/value.svg'><td><img src='ide/xml.schema.completion/src/org/netbeans/modules/xml/schema/completion/resources/value.png'><td>16x16<td>ide/xml.schema.completion/src/org/netbeans/modules/xml/schema/completion/resources/value.png</tr>
<tr><td><td><td>java/maven.grammar/src/org/netbeans/modules/maven/grammar/value.png</tr>
<tr><td><img src='java/maven.grammar/src/org/netbeans/modules/maven/navigator/value.png'><td>16x16<td>java/maven.grammar/src/org/netbeans/modules/maven/navigator/value.png</tr>
<tr><td><img src='java/maven.grammar/src/org/netbeans/modules/maven/navigator/value3.png'><td>16x16<td>java/maven.grammar/src/org/netbeans/modules/maven/navigator/value3.png</tr>
<tr><td><img src='java/maven.grammar/src/org/netbeans/modules/maven/navigator/value2.png'><td>16x16<td>java/maven.grammar/src/org/netbeans/modules/maven/navigator/value2.png</tr>
<tr style='background: #eee'><td rowspan='22'>class<td rowspan='22'><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/class.svg'><td><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/class.png'><td>16x16<td>groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/class.png</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/class.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/class_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/record.png</tr>
<tr style='background: #eee'><td><td><td>ide/jumpto/src/org/netbeans/modules/jumpto/type/sample.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/class.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/struct.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/class.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/record.png</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/class.png</tr>
<tr style='background: #eee'><td><td><td>php/php.dbgp/src/org/netbeans/modules/php/dbgp/resources/class.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/class.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/class.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/class.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/class.gif</tr>
<tr style='background: #eee'><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/class.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/class.gif</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/class.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/web.core.syntax/src/org/netbeans/modules/web/core/syntax/completion/resources/class_16.png'><td>16x16<td>enterprise/web.core.syntax/src/org/netbeans/modules/web/core/syntax/completion/resources/class_16.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/web.el/src/org/netbeans/modules/web/el/completion/resources/class_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/class.gif</tr>
<tr style='background: #eee'><td><td><td>ide/languages/src/org/netbeans/modules/languages/resources/class.gif</tr>
<tr style='background: #eee'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/classesView/Classes.png'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/classesView/Classes.png</tr>
<tr><td rowspan='12'>enum<td rowspan='12'><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/enum.svg'><td><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/enum.png'><td>16x16<td>groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/enum.png</tr>
<tr><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/enum.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/enum.png</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/enum.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/enum.png</tr>
<tr><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/resources/enum.gif</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/enum.png</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/enum.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/enum.gif</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/enum.gif</tr>
<tr><td><img src='enterprise/web.core.syntax/src/org/netbeans/modules/web/core/syntax/completion/resources/map_16.png'><td>16x16<td>enterprise/web.core.syntax/src/org/netbeans/modules/web/core/syntax/completion/resources/map_16.png</tr>
<tr><td><td><td>enterprise/web.el/src/org/netbeans/modules/web/el/completion/resources/map_16.png</tr>
<tr><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/map-property.png</tr>
<tr style='background: #eee'><td rowspan='2'>fqn<td rowspan='2'><img src='enterprise/web.beans/src/org/netbeans/modules/web/beans/resources/fqn.svg'><td><img src='enterprise/web.beans/src/org/netbeans/modules/web/beans/resources/fqn.png'><td>16x16<td>enterprise/web.beans/src/org/netbeans/modules/web/beans/resources/fqn.png</tr>
<tr style='background: #eee'><td><td><td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/fqn.png</tr>
<tr><td rowspan='11'>sourcesBadge8x8<td rowspan='11'><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/sources-badge.svg'><td><img src='extide/gradle/src/org/netbeans/modules/gradle/resources/sources-badge.png'><td>8x8<td>extide/gradle/src/org/netbeans/modules/gradle/resources/sources-badge.png</tr>
<tr><td><td><td>java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/resources/jarSourceBadge.png</tr>
<tr><td><td><td>java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/ui/resources/jarSourceBadge.png</tr>
<tr><td><td><td>java/maven/src/org/netbeans/modules/maven/DependencySrcIncluded.png</tr>
<tr><td><td><td>rust/rust.project.api/src/org/netbeans/modules/rust/project/api/sources-badge.png</tr>
<tr><td><img src='contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/packageBadge.gif'><td>8x8<td>contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/packageBadge.gif</tr>
<tr><td><td><td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packageBadge.gif</tr>
<tr><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/packageBadge.gif</tr>
<tr><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/ui/resources/sources-badge.gif</tr>
<tr><td><img src='enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/table_dp_badge.png'><td>8x8<td>enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/table_dp_badge.png</tr>
<tr><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/table_dp_badge.png</tr>
<tr style='background: #eee'><td rowspan='4'>packageSmaller<td rowspan='4'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/package.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/package.gif'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/package.gif</tr>
<tr style='background: #eee'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/PackageModifier.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/PackageModifier.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/package.gif</tr>
<tr style='background: #eee'><td><img src='java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/found_item_source.png'><td>17x17<td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/found_item_source.png</tr>
<tr><td rowspan='10'>package<td rowspan='10'><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/package.svg'><td><img src='ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/package.gif'><td>16x16<td>ide/code.analysis/src/org/netbeans/modules/analysis/ui/resources/package.gif</tr>
<tr><td><td><td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/package.gif</tr>
<tr><td><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/package.gif'><td>16x16<td>groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/package.gif</tr>
<tr><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/package.gif</tr>
<tr><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/completion_package.gif</tr>
<tr><td><td><td>java/java.editor/src/org/netbeans/modules/java/editor/resources/package.gif</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/package.gif</tr>
<tr><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/package.gif</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/package.png</tr>
<tr><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/debuggingView/show_fqn_option_16.png'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/debuggingView/show_fqn_option_16.png</tr>
<tr style='background: #eee'><td rowspan='3'>packageEmpty<td rowspan='3'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packageEmpty.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packageEmpty.gif'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packageEmpty.gif</tr>
<tr style='background: #eee'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/package-empty.gif'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/package-empty.gif</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/package-empty.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/package-empty.gif</tr>
<tr><td rowspan='1'>packagePrivate<td rowspan='1'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePrivate.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePrivate.gif'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePrivate.gif</tr>
<tr style='background: #eee'><td rowspan='1'>packagePublic<td rowspan='1'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePublic.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePublic.gif'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/packagePublic.gif</tr>
<tr><td rowspan='6'>filterHideNonPublic<td rowspan='6'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideNonPublic.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideNonPublic.png'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideNonPublic.png</tr>
<tr><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/filterHideNonPublic.png</tr>
<tr><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/allInOneView/monitor_acquired_16.png'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/allInOneView/monitor_acquired_16.png</tr>
<tr><td><td><td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/debuggingView/monitor_acquired_16.png</tr>
<tr><td><img src='enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/SecurityRoleMappingIcon.gif'><td>16x16<td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/SecurityRoleMappingIcon.gif</tr>
<tr><td><td><td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/share/configbean/resources/SecurityRoleMappingIcon16.gif</tr>
<tr style='background: #eee'><td rowspan='6'>private<td rowspan='6'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/private.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/private.gif'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/private.gif</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideNonPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideNonPublic.png</tr>
<tr style='background: #eee'><td><img src='java/java.graph/src/org/netbeans/modules/java/graph/resources/lock.png'><td>16x16<td>java/java.graph/src/org/netbeans/modules/java/graph/resources/lock.png</tr>
<tr style='background: #eee'><td><img src='contrib/websvc.wsitconf/src/org/netbeans/modules/websvc/wsitconf/resources/designer-security.gif'><td>16x16<td>contrib/websvc.wsitconf/src/org/netbeans/modules/websvc/wsitconf/resources/designer-security.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/PrivateModifier.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/private.gif</tr>
<tr><td rowspan='5'>public<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/public.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/public.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/public.gif</tr>
<tr><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/PublicModifier.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/PublicModifier.gif</tr>
<tr><td><td><td>java/java.module.graph/src/org/netbeans/modules/java/module/graph/resources/public.gif</tr>
<tr><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/public.gif</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/nonPrivate.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/nonPrivate.gif</tr>
<tr style='background: #eee'><td rowspan='1'>privateBadge<td rowspan='1'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/privateBadge.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/privateBadge.gif'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/privateBadge.gif</tr>
<tr><td rowspan='1'>publicBadge<td rowspan='1'><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/publicBadge.svg'><td><img src='java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/publicBadge.gif'><td>16x16<td>java/java.project.ui/src/org/netbeans/spi/java/project/support/ui/publicBadge.gif</tr>
<tr style='background: #eee'><td rowspan='6'>constantPublic<td rowspan='6'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPublic.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/constant.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constant.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constant.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/constant.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/constant.gif'><td>16x16<td>enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/constant.gif</tr>
<tr><td rowspan='1'>constantPrivate<td rowspan='1'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantPrivate.png</tr>
<tr style='background: #eee'><td rowspan='1'>constantProtected<td rowspan='1'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constantProtected.png</tr>
<tr><td rowspan='5'>constructorPackage<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPackage.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPackage.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPackage.png</tr>
<tr><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorStaticPackage.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/constructor_package_private_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constructorPackage.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/constructorPackage.png</tr>
<tr style='background: #eee'><td rowspan='5'>constructorPrivate<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorStaticPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/constructor_private_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constructorPrivate.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/constructorPrivate.png</tr>
<tr><td rowspan='5'>constructorProtected<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorProtected.png</tr>
<tr><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorStaticProtected.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/constructor_protected_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constructorProtected.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/constructorProtected.png</tr>
<tr style='background: #eee'><td rowspan='9'>constructorPublic<td rowspan='9'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPublic.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/constructorStaticPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/constructor_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/constructor.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/constructorPublic.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/constructorPublic.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/constructorPublic.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/initializer.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/initializer.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/initializer.png</tr>
<tr style='background: #eee'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/initializer.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/initializer.png</tr>
<tr><td rowspan='3'>initializerStatic<td rowspan='3'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/initializerSt.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/initializerSt.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/initializerSt.png</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/initializerStatic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/initializerStatic.png</tr>
<tr><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/initializerStatic.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/initializerStatic.png</tr>
<tr style='background: #eee'><td rowspan='4'>primitive<td rowspan='4'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/primitive.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/primitive.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/primitive.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideFields.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideFields.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/CMPFieldIcon.gif'><td>16x16<td>enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/CMPFieldIcon.gif</tr>
<tr style='background: #eee'><td><td><td>ide/languages/src/org/netbeans/modules/languages/resources/variable.gif</tr>
<tr><td rowspan='1'>variables<td rowspan='1'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variables.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variables.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variables.png</tr>
<tr style='background: #eee'><td rowspan='3'>filterHideFields<td rowspan='3'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideFields.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideFields.png'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideFields.png</tr>
<tr style='background: #eee'><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/filterHideFields.png</tr>
<tr style='background: #eee'><td><img src='java/maven.grammar/src/org/netbeans/modules/maven/navigator/filterHideFields.gif'><td>16x16<td>java/maven.grammar/src/org/netbeans/modules/maven/navigator/filterHideFields.gif</tr>
<tr><td rowspan='4'>fieldPackage<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPackage.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPackage.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPackage.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_package_private_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldPackage.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variablePackage.png</tr>
<tr style='background: #eee'><td rowspan='6'>fieldPrivate<td rowspan='6'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_private_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldPrivate.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/recordComponent.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/fieldPrivate.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variablePrivate.png</tr>
<tr><td rowspan='5'>fieldProtected<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldProtected.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_protected_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldProtected.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/fieldProtected.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableProtected.png</tr>
<tr style='background: #eee'><td rowspan='9'>fieldPublic<td rowspan='9'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPublic.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/enummember.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/field.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/property.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldPublic.png</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/property.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/fieldPublic.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variablePublic.png</tr>
<tr><td rowspan='4'>localVariable<td rowspan='4'><img src='ide/css.prep/src/org/netbeans/modules/css/prep/editor/resources/localVariable.svg'><td><img src='ide/css.prep/src/org/netbeans/modules/css/prep/editor/resources/localVariable.gif'><td>16x16<td>ide/css.prep/src/org/netbeans/modules/css/prep/editor/resources/localVariable.gif</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/localVariable.gif</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/typeparameter.gif</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/variable.gif</tr>
<tr style='background: #eee'><td rowspan='6'>fieldStatic<td rowspan='6'><img src='enterprise/websvc.core/src/org/netbeans/modules/websvc/editor/completion/resources/field_static_16.svg'><td><img src='enterprise/websvc.core/src/org/netbeans/modules/websvc/editor/completion/resources/field_static_16.png'><td>16x16<td>enterprise/websvc.core/src/org/netbeans/modules/websvc/editor/completion/resources/field_static_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_static_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldStaticPublic.png</tr>
<tr style='background: #eee'><td><td><td>javafx/javafx2.editor/src/org/netbeans/modules/javafx2/editor/resources/property-static.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPublic.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPublic.png</tr>
<tr><td rowspan='4'>fieldStaticPackage<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPackage.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPackage.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPackage.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_static_package_private_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldStaticPackage.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPackage.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPackage.png</tr>
<tr style='background: #eee'><td rowspan='4'>fieldStaticPrivate<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_static_private_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldStaticPrivate.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPrivate.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStPrivate.png</tr>
<tr><td rowspan='4'>fieldStaticProtected<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/fieldStaticProtected.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/field_static_protected_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/fieldStaticProtected.png</tr>
<tr><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStProtected.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/variableStProtected.png</tr>
<tr style='background: #eee'><td rowspan='5'>filterHideStatic<td rowspan='5'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideStatic.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideStatic.png'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideStatic.png</tr>
<tr style='background: #eee'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/static.png'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/static.png</tr>
<tr style='background: #eee'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/StaticModifier.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/StaticModifier.gif</tr>
<tr style='background: #eee'><td><img src='java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/filterHideStatic.png'><td>16x16<td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/filterHideStatic.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideStatic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideStatic.png</tr>
<tr><td rowspan='4'>methodPackage<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPackage.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPackage.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPackage.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_package_private_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodPackage.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodPackage.png</tr>
<tr style='background: #eee'><td rowspan='4'>methodPrivate<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_private_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodPrivate.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodPrivate.png</tr>
<tr><td rowspan='5'>methodProtected<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodProtected.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_protected_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodProtected.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/methodProtected.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodProtected.png</tr>
<tr style='background: #eee'><td rowspan='19'>methodPublic<td rowspan='19'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPublic.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_16.png</tr>
<tr style='background: #eee'><td><td><td>ide/hudson/src/org/netbeans/modules/hudson/resources/red.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/function.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/method.png</tr>
<tr style='background: #eee'><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/operator.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodPublic.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/function.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/methodPublic.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodPublic.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodPublic.png</tr>
<tr style='background: #eee'><td><img src='enterprise/javaee.wildfly/src/org/netbeans/modules/javaee/wildfly/resources/method.png'><td>16x16<td>enterprise/javaee.wildfly/src/org/netbeans/modules/javaee/wildfly/resources/method.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/websvc.rest/src/org/netbeans/modules/websvc/rest/nodes/resources/method.png</tr>
<tr style='background: #eee'><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/method.png</tr>
<tr style='background: #eee'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/method.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/method.png</tr>
<tr style='background: #eee'><td><img src='enterprise/web.jsf.editor/src/org/netbeans/modules/web/jsf/editor/resources/method_16.png'><td>16x16<td>enterprise/web.jsf.editor/src/org/netbeans/modules/web/jsf/editor/resources/method_16.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/web.jsf.navigation/src/org/netbeans/modules/web/jsf/navigation/graph/resources/abstract.gif</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/method.gif</tr>
<tr style='background: #eee'><td><td><td>ide/languages/src/org/netbeans/modules/languages/resources/node.gif</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/BusinessMethodIcon.gif'><td>16x16<td>enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/BusinessMethodIcon.gif</tr>
<tr><td rowspan='1'>instance<td rowspan='1'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/instance.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/instance.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/instance.png</tr>
<tr style='background: #eee'><td rowspan='3'>protected<td rowspan='3'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/protected.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/protected.gif'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/protected.gif</tr>
<tr style='background: #eee'><td><img src='ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/ProtectedModifier.gif'><td>16x16<td>ide/spi.debugger.ui/src/org/netbeans/modules/debugger/resources/watchesView/ProtectedModifier.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/comments/resources/protected.gif</tr>
<tr><td rowspan='4'>methodStaticPackage<td rowspan='4'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPackage.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPackage.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPackage.png</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPackage.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPackage.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_static_package_private_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodStaticPackage.png</tr>
<tr style='background: #eee'><td rowspan='4'>methodStaticPrivate<td rowspan='4'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPrivate.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPrivate.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPrivate.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_static_private_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodStaticPrivate.png</tr>
<tr style='background: #eee'><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPrivate.png</tr>
<tr><td rowspan='5'>methodStaticProtected<td rowspan='5'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticProtected.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticProtected.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticProtected.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_static_protected_16.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodStaticProtected.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/methodStaticProtected.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStProtected.png</tr>
<tr style='background: #eee'><td rowspan='5'>methodStaticPublic<td rowspan='5'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPublic.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPublic.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodStPublic.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPublic.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/methodStaticPublic.png</tr>
<tr style='background: #eee'><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/method_static_16.png</tr>
<tr style='background: #eee'><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodStaticPublic.png</tr>
<tr style='background: #eee'><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/methodStaticPublic.png</tr>
<tr><td rowspan='1'>methodAbstractPackage<td rowspan='1'><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPackage.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPackage.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPackage.png</tr>
<tr style='background: #eee'><td rowspan='1'>methodAbstractProtected<td rowspan='1'><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractProtected.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractProtected.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractProtected.png</tr>
<tr><td rowspan='1'>methodAbstractPublic<td rowspan='1'><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPublic.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPublic.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodAbstractPublic.png</tr>
<tr style='background: #eee'><td rowspan='1'>methodDefaultPublic<td rowspan='1'><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodDefaultPublic.svg'><td><img src='java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodDefaultPublic.png'><td>16x16<td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/methodDefaultPublic.png</tr>
<tr><td rowspan='1'>methodInherited<td rowspan='1'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodInherited.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodInherited.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methodInherited.png</tr>
<tr style='background: #eee'><td rowspan='5'>methods<td rowspan='5'><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methods.svg'><td><img src='profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methods.png'><td>16x16<td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/methods.png</tr>
<tr style='background: #eee'><td><img src='enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/MethodContainerIcon.gif'><td>16x16<td>enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/MethodContainerIcon.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/MethodContainerIconOpen.gif</tr>
<tr style='background: #eee'><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/methods.gif</tr>
<tr style='background: #eee'><td><td><td>ide/css.prep/src/org/netbeans/modules/css/prep/editor/resources/methods.gif</tr>
<tr><td rowspan='10'>interface<td rowspan='10'><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/interface.svg'><td><img src='groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/interface.png'><td>16x16<td>groovy/groovy.editor/src/org/netbeans/modules/groovy/editor/resources/interface.png</tr>
<tr><td><td><td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/interface.png</tr>
<tr><td><td><td>ide/editor/src/org/netbeans/modules/editor/resources/completion/interface.png</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/interface.png</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/interface.png</tr>
<tr><td><td><td>php/php.editor/src/org/netbeans/modules/php/editor/resources/interface.png</tr>
<tr><td><td><td>profiler/profiler/src/org/netbeans/modules/profiler/impl/icons/interface.png</tr>
<tr><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/interface.gif'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/interface.gif</tr>
<tr><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/interface.gif</tr>
<tr><td><td><td>java/java.source/src/org/netbeans/modules/java/source/resources/icons/interface.gif</tr>
<tr style='background: #eee'><td rowspan='4'>filterHideInherited<td rowspan='4'><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideInherited.svg'><td><img src='java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideInherited.png'><td>16x16<td>java/java.navigation/src/org/netbeans/modules/java/navigation/resources/filterHideInherited.png</tr>
<tr style='background: #eee'><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/filterHideInherited.png</tr>
<tr style='background: #eee'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideInherited.png'><td>16x16<td>ide/csl.api/src/org/netbeans/modules/csl/navigation/resources/filterHideInherited.png</tr>
<tr style='background: #eee'><td><img src='java/maven.grammar/src/org/netbeans/modules/maven/navigator/filterHideInherited.png'><td>16x16<td>java/maven.grammar/src/org/netbeans/modules/maven/navigator/filterHideInherited.png</tr>
<tr><td rowspan='9'>fileHTML<td rowspan='9'><img src='enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/htmlObject.svg'><td><img src='enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/htmlObject.gif'><td>16x16<td>enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/multiview/resources/htmlObject.gif</tr>
<tr><td><td><td>ide/editor/demosrc/base/org/netbeans/editor/example/res/htmlObject.gif</tr>
<tr><td><img src='ide/html.editor/src/org/netbeans/modules/html/editor/resources/html.png'><td>16x16<td>ide/html.editor/src/org/netbeans/modules/html/editor/resources/html.png</tr>
<tr><td><td><td>ide/languages.manifest/src/org/netbeans/modules/languages/manifest/manifest_file_16.png</tr>
<tr><td><td><td>ide/languages/src/org/netbeans/modules/languages/resources/defaultIcon.png</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/snippet.png</tr>
<tr><td><td><td>ide/lsp.client/src/org/netbeans/modules/lsp/client/bindings/icons/text.png</tr>
<tr><td><img src='ide/html/src/org/netbeans/modules/html/htmlObject.png'><td>16x16<td>ide/html/src/org/netbeans/modules/html/htmlObject.png</tr>
<tr><td><img src='enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/item.gif'><td>16x20<td>enterprise/websvc.restapi/src/org/netbeans/modules/websvc/rest/spi/resources/item.gif</tr>
<tr style='background: #eee'><td rowspan='10'>fileUnknown<td rowspan='10'><img src='enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/MyActionIcon.svg'><td><img src='enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/MyActionIcon.gif'><td>16x16<td>enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/resources/MyActionIcon.gif</tr>
<tr style='background: #eee'><td><td><td>ide/jumpto/src/org/netbeans/modules/jumpto/resources/unknown.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.palette/src/org/netbeans/modules/palette/resources/unknown16.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml/src/org/netbeans/modules/xml/resources/scenarioAction.gif</tr>
<tr style='background: #eee'><td><td><td>java/form/src/org/netbeans/modules/form/resources/palette/unknown.gif</tr>
<tr style='background: #eee'><td><td><td>java/javadoc/src/org/netbeans/modules/javadoc/resources/pending.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.awt/src/org/openide/awt/resources/unknown.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.loaders/src/org/openide/loaders/instanceObject.gif</tr>
<tr style='background: #eee'><td><td><td>platform/openide.loaders/src/org/openide/loaders/unknown.gif</tr>
<tr style='background: #eee'><td><td><td>websvccommon/websvc.saas.ui/src/org/netbeans/modules/websvc/saas/ui/resources/ActionIcon.gif</tr>
<tr><td rowspan='1'>updateDatabase<td rowspan='1'><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/query-editor-tab.svg'><td><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/query-editor-tab.png'><td>16x16<td>ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/query-editor-tab.png</tr>
<tr style='background: #eee'><td rowspan='1'>testSkipped<td rowspan='1'><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/skipped_16.svg'><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/skipped_16.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/skipped_16.png</tr>
<tr><td rowspan='10'>globe8x8<td rowspan='10'><img src='enterprise/profiler.j2ee/src/org/netbeans/modules/profiler/j2ee/impl/icons/webPagesBadge.svg'><td><img src='enterprise/profiler.j2ee/src/org/netbeans/modules/profiler/j2ee/impl/icons/webPagesBadge.png'><td>8x8<td>enterprise/profiler.j2ee/src/org/netbeans/modules/profiler/j2ee/impl/icons/webPagesBadge.png</tr>
<tr><td><td><td>enterprise/web.project/src/org/netbeans/modules/web/project/ui/resources/webPagesBadge.gif</tr>
<tr><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/webRootBadge.gif</tr>
<tr><td><td><td>webcommon/web.clientproject/src/org/netbeans/modules/web/clientproject/ui/resources/siteroot-badge.gif</tr>
<tr><td><img src='enterprise/websvc.rest/src/org/netbeans/modules/websvc/rest/nodes/resources/httpmethods.png'><td>8x8<td>enterprise/websvc.rest/src/org/netbeans/modules/websvc/rest/nodes/resources/httpmethods.png</tr>
<tr><td><img src='java/maven/src/org/netbeans/modules/maven/projectsite-badge.png'><td>8x8<td>java/maven/src/org/netbeans/modules/maven/projectsite-badge.png</tr>
<tr><td><img src='enterprise/gradle.javaee/src/org/netbeans/modules/gradle/javaee/resources/WebPagesBadge.png'><td>8x8<td>enterprise/gradle.javaee/src/org/netbeans/modules/gradle/javaee/resources/WebPagesBadge.png</tr>
<tr><td><td><td>enterprise/maven.j2ee/src/org/netbeans/modules/maven/j2ee/ui/resources/WebPagesBadge.png</tr>
<tr><td><img src='enterprise/websvc.core/src/org/netbeans/modules/websvc/core/client/resources/webServiceBadge.gif'><td>8x8<td>enterprise/websvc.core/src/org/netbeans/modules/websvc/core/client/resources/webServiceBadge.gif</tr>
<tr><td><img src='enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/warBadge.png'><td>8x8<td>enterprise/j2eeserver/src/org/netbeans/modules/j2ee/deployment/impl/ui/resources/warBadge.png</tr>
<tr style='background: #eee'><td rowspan='16'>error8x8<td rowspan='16'><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/error-badge.svg'><td><img src='ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/error-badge.gif'><td>8x8<td>ide/csl.api/src/org/netbeans/modules/csl/source/resources/icons/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>ide/spi.editor.hints/src/org/netbeans/modules/editor/hints/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><img src='ide/db.mysql/src/org/netbeans/modules/db/mysql/resources/error-badge.gif'><td>8x8<td>ide/db.mysql/src/org/netbeans/modules/db/mysql/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>ide/parsing.ui/src/org/netbeans/modules/parsing/ui/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><img src='ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/disconnected.png'><td>8x8<td>ide/db.sql.visualeditor/src/org/netbeans/modules/db/sql/visualeditor/resources/disconnected.png</tr>
<tr style='background: #eee'><td><img src='enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/disabled-badge.gif'><td>8x8<td>enterprise/glassfish.common/src/org/netbeans/modules/glassfish/common/resources/disabled-badge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/client/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.ddloaders/src/org/netbeans/modules/j2ee/ddloaders/web/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/resources/ErrorBadge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/maven.jaxws/src/org/netbeans/modules/maven/jaxws/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/payara.common/src/org/netbeans/modules/payara/common/resources/disabled-badge.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/web.core/src/org/netbeans/modules/web/core/resources/badge_error.png</tr>
<tr style='background: #eee'><td><td><td>enterprise/websvc.core/src/org/netbeans/modules/websvc/core/webservices/ui/resources/error-badge.gif</tr>
<tr style='background: #eee'><td><td><td>ide/xml.text/src/org/netbeans/modules/xml/text/navigator/resources/badge_error.png</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.cdnjs/src/org/netbeans/modules/javascript/cdnjs/ui/resources/broken-badge.gif</tr>
<tr><td rowspan='4'>fileApplet<td rowspan='4'><img src='java/form/src/org/netbeans/modules/form/resources/applet.svg'><td><img src='java/form/src/org/netbeans/modules/form/resources/applet.gif'><td>16x16<td>java/form/src/org/netbeans/modules/form/resources/applet.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/dialog.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/form.gif</tr>
<tr><td><td><td>java/form/src/org/netbeans/modules/form/resources/frame.gif</tr>
<tr style='background: #eee'><td rowspan='1'>okWithErrors<td rowspan='1'><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_withErrors_16.svg'><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_withErrors_16.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/ok_withErrors_16.png</tr>
<tr><td rowspan='2'>restartError<td rowspan='2'><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/restart_error2_16.svg'><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/restart_error2_16.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/restart_error2_16.png</tr>
<tr><td><img src='ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/restart_error_16.png'><td>16x16<td>ide/gsf.testrunner/src/org/netbeans/modules/gsf/testrunner/resources/restart_error_16.png</tr>
<tr style='background: #eee'><td rowspan='2'>checkXML<td rowspan='2'><img src='ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/check_xml.svg'><td><img src='ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/check_xml.png'><td>16x16<td>ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/check_xml.png</tr>
<tr style='background: #eee'><td><img src='ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/checkDTDAction.gif'><td>16x16<td>ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/checkDTDAction.gif</tr>
<tr><td rowspan='1'>validateXML<td rowspan='1'><img src='ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/validate_xml.svg'><td><img src='ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/validate_xml.png'><td>16x16<td>ide/xml.tools/src/org/netbeans/modules/xml/tools/resources/validate_xml.png</tr>
<tr style='background: #eee'><td rowspan='1'>othersBadge<td rowspan='1'><img src='java/maven/src/org/netbeans/modules/maven/others-badge.svg'><td><img src='java/maven/src/org/netbeans/modules/maven/others-badge.png'><td>8x8<td>java/maven/src/org/netbeans/modules/maven/others-badge.png</tr>
<tr><td rowspan='2'>fileImage<td rowspan='2'><img src='ide/image/src/org/netbeans/modules/image/imageObject.svg'><td><img src='ide/image/src/org/netbeans/modules/image/imageObject.png'><td>16x16<td>ide/image/src/org/netbeans/modules/image/imageObject.png</tr>
<tr><td><td><td>java/debugger.jpda.ui/src/org/netbeans/modules/debugger/jpda/resources/show_property_editors_16.png</tr>
<tr style='background: #eee'><td rowspan='16'>libraries<td rowspan='16'><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/api/libraries.svg'><td><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/api/libraries.gif'><td>16x16<td>apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/api/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>contrib/j2ee.weblogic9/src/org/netbeans/modules/j2ee/weblogic9/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>enterprise/j2ee.earproject/src/org/netbeans/modules/j2ee/earproject/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/libraries.png</tr>
<tr style='background: #eee'><td><td><td>ide/project.libraries/src/org/netbeans/modules/project/libraries/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>java/java.project.ui/src/org/netbeans/modules/java/project/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>java/maven/src/org/netbeans/modules/maven/actions/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>java/refactoring.java/src/org/netbeans/modules/refactoring/java/resources/found_item_binary.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.composer/src/org/netbeans/modules/php/composer/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>php/php.project/src/org/netbeans/modules/php/project/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.bower/src/org/netbeans/modules/javascript/bower/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.cdnjs/src/org/netbeans/modules/javascript/cdnjs/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><td><td>webcommon/javascript.nodejs/src/org/netbeans/modules/javascript/nodejs/ui/resources/libraries.gif</tr>
<tr style='background: #eee'><td><img src='java/maven/src/org/netbeans/modules/maven/customizer/libraries.gif'><td>16x16<td>java/maven/src/org/netbeans/modules/maven/customizer/libraries.gif</tr>
<tr><td rowspan='14'>librariesBadge8x8<td rowspan='14'><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/libraries-badge.svg'><td><img src='apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/libraries-badge.png'><td>8x8<td>apisupport/apisupport.project/src/org/netbeans/modules/apisupport/project/ui/resources/libraries-badge.png</tr>
<tr><td><td><td>contrib/groovy.grailsproject/src/org/netbeans/modules/groovy/grailsproject/resources/librariesBadge.png</tr>
<tr><td><td><td>extide/gradle/src/org/netbeans/modules/gradle/resources/libraries-badge.png</tr>
<tr><td><td><td>java/gradle.java/src/org/netbeans/modules/gradle/java/resources/libraries-badge.png</tr>
<tr><td><td><td>java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/resources/libraries-badge.png</tr>
<tr><td><td><td>java/java.j2seproject/src/org/netbeans/modules/java/j2seproject/ui/resources/libraries-badge.png</tr>