Java Utililty Methods ImageIcon

List of utility methods to do ImageIcon

Description

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

Method

JProgressBarshowLogoProgressBar(ImageIcon logo, int steps)
Shows progress bar with logo
JProgressBar jpb = new JProgressBar();
jpb.setMinimum(0);
jpb.setMaximum(steps);
JWindow pBarWin = new JWindow();
JLabel jl = new JLabel(logo);
JPanel jp = new JPanel();
jp.setBorder(new SoftBevelBorder(SoftBevelBorder.RAISED));
GridBagLayout layout = new GridBagLayout();
...
voidshowSplash(ImageIcon image, int milliseconds)
DOCUMENT ME!
showSplash(image, milliseconds, true);
voidshowSplash(ImageIcon image, int milliseconds)
show Splash
showSplash(image, milliseconds, true);
ImageIcontoDisabledIcon(ImageIcon icon)
to Disabled Icon
return new ImageIcon(GrayFilter.createDisabledImage((icon).getImage()));
ListtoImagesList(final List imageIcons)
Returns Images list instead of ImageIcons list
final List<Image> images = new ArrayList<Image>(imageIcons.size());
for (final ImageIcon imageIcon : imageIcons) {
    images.add(imageIcon.getImage());
return images;