Here you can find the source of setImage(Image im, Component c)
public static boolean setImage(Image im, Component c)
//package com.java2s; /**/* w w w . j a va2s . c om*/ * 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. */ import java.awt.*; public class Main { /** * Ensures that Images is completely loaded */ public static boolean setImage(Image im, Component 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; } }