mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GT-2698 refactor JLabel -> GLabel, JComboBox -> GComboBox, renderers.
This commit is contained in:
parent
e0c25b0590
commit
6448f0da8f
280 changed files with 2277 additions and 1531 deletions
|
@ -690,4 +690,12 @@ public class ResourceManager {
|
|||
testSearchPaths = results;
|
||||
return testSearchPaths;
|
||||
}
|
||||
|
||||
public static List<ImageIcon> loadImages(String... filenames) {
|
||||
List<ImageIcon> results = new ArrayList<>(filenames.length);
|
||||
for (String filename : filenames) {
|
||||
results.add(loadImage(filename));
|
||||
}
|
||||
return results;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue