mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
javadoc enhancement
This commit is contained in:
parent
4967787769
commit
56a2799dc0
1 changed files with 10 additions and 6 deletions
|
@ -38,10 +38,14 @@ public class AsyncCompletionWaitor {
|
|||
waitReset();
|
||||
}
|
||||
|
||||
/*
|
||||
/**
|
||||
* A timeout of WAIT_FOREVER indicates we wait until the operation is
|
||||
* completed by a call to waitFinished. Or if we are interrupted
|
||||
* with an exception.
|
||||
* completed by a call to waitFinished. Or if we are interrupted with an
|
||||
* exception.
|
||||
*
|
||||
* @param timeout the maximum time to wait in milliseconds
|
||||
*
|
||||
* @throws InterruptedException
|
||||
*/
|
||||
public synchronized void waitUntilDone(int timeout) throws InterruptedException {
|
||||
if (fWaitFinished) return;
|
||||
|
@ -50,7 +54,7 @@ public class AsyncCompletionWaitor {
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
/**
|
||||
* Indicates that we are done with the operation and the code
|
||||
* waiting ( waitUntilDone ) will be allowed to continue.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue