/**
* MegaMek - Copyright (C) 2000-2002 Ben Mazur (bmazur@sev.org)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
package megamek.client.ui.swing.widget;
import java.awt.Image;
import java.awt.MediaTracker;
import javax.swing.JComponent;
/**
* Set of usefull function.
*/
public final class PMUtil {
/**
* Ensures that Images is completely loaded
*/
public static boolean setImage(Image im, JComponent c) {
boolean b = true;
MediaTracker mt = new MediaTracker(c);
mt.addImage(im, 0);
try {
mt.waitForID(0);
} catch (InterruptedException e) {
System.out.println("Error while image loading."); //$NON-NLS-1$
b = false;
}
if (mt.isErrorID(0)) {
System.out.println("Could Not load Image."); //$NON-NLS-1$
b = false;
}
return b;
}
}