home *** CD-ROM | disk | FTP | other *** search
- package netscape.debug;
-
- public class MonitorInfo {
- private Object monitoredObject;
-
- MonitorInfo(Object var1) {
- this.monitoredObject = var1;
- }
-
- public Object getMonitoredObject() {
- return this.monitoredObject;
- }
-
- public native Thread getOwner();
-
- public native int getEntryCount();
-
- public native Thread[] getMonitorWaiters();
-
- public native Thread[] getConditionWaiters();
- }
-