Possible flags defined by the MediaTracker class are LOADING, ABORTED, ERRORED, and COMPLETE. An image that hasn't started loading has zero as its status.
If the value of load is true, then this method starts loading any images that are not yet being loaded.
@param id the identifier of the images to check
@param load if true, start loadingany images that are not yet being loaded
@return the bitwise inclusive OR of the status ofall of the media with the specified identifier that are being tracked
@see java.awt.MediaTracker#statusAll(boolean)
@see java.awt.MediaTracker#LOADING
@see java.awt.MediaTracker#ABORTED
@see java.awt.MediaTracker#ERRORED
@see java.awt.MediaTracker#COMPLETE
| |