Java Utililty Methods Icon

List of utility methods to do Icon

Description

The list of methods to do Icon are organized into topic(s).

Method

ListtoImages(List icons)
Converts the given Icon s to Image s.
List<Image> images = null;
if (icons != null) {
    images = new ArrayList<Image>(icons.size());
    for (Icon icon : icons) {
        if (icon instanceof ImageIcon) {
            Image image = ((ImageIcon) icon).getImage();
            images.add(image);
return images;