added getObject() method.

git-svn-id: svn://10.0.0.236/trunk@41578 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com 1999-07-30 03:27:05 +00:00
parent bfcea10d3b
commit 1069ecca71
2 changed files with 7 additions and 0 deletions

View File

@ -112,3 +112,8 @@ void MRJMonitor::notifyAll()
env->MonitorExit(mMonitor);
}
}
jobject MRJMonitor::getObject()
{
return mMonitor;
}

View File

@ -43,6 +43,8 @@ public:
virtual void wait(long long millis);
virtual void notify();
virtual void notifyAll();
virtual jobject getObject();
private:
MRJSession* mSession;