Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

MediaTracker.statusID() method

801421May 29 2010 — edited May 30 2010
if (tracker.statusID(1, false) ==
                          MediaTracker.COMPLETE){ }
the second(boolean) argument in statusID() is about the images which are yet to be loaded .A true means there are more images and a false means that loading is complete .
So,since MediaTracker.COMPLETE flag is used ,then would this make sense ?:
if (tracker.statusID(1, true) ==
                          MediaTracker.COMPLETE){ }
tracker is a MediaTracker object.
Please correct me if I have interpreted the meaning of the boolean argument wrongly .

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 27 2010
Added on May 29 2010
2 comments
508 views