1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[cleanup] Fix @since tag format

This commit is contained in:
Martin Oberhuber 2008-05-02 13:45:11 +00:00
parent dbd1657b40
commit 60105e8ddf
2 changed files with 15 additions and 6 deletions

View file

@ -509,9 +509,14 @@ public class SystemMessageDialog extends ErrorDialog implements Listener {
} }
/** /**
* opens the dialog with an optional Yes/No or OK, Details button for an Inquiry/Question message. * opens the dialog with an optional Yes/No or OK, Details button for an
* Eats up the IndicatorException, so only call this when you know what you are doing! * Inquiry/Question message. Eats up the IndicatorException, so only call
* @since 3.0 taking a boolean arg * this when you know what you are doing!
*
* Before RSE 3.0, this method had no arguments. Since RSE 3.0, it is taking
* a boolean argument.
*
* @since org.eclipse.rse.ui 3.0
*/ */
public boolean openQuestionNoException(boolean showYesNo) public boolean openQuestionNoException(boolean showYesNo)
{ {

View file

@ -160,7 +160,7 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
public class PromptForPassword implements Runnable public class PromptForPassword implements Runnable
{ {
public SubSystem _ss; public SubSystem _ss;
private boolean isCancelled = false; private volatile boolean isCancelled = false;
public PromptForPassword(SubSystem ss) public PromptForPassword(SubSystem ss)
{ {
_ss = ss; _ss = ss;
@ -183,7 +183,11 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
} }
/** /**
* @since org.eclipse.rse.ui 3.0 renamed from isCanceled to isCancelled * Test whether this operation is cancelled.
*
* This method was renamed from isCanceled to isCancelled in RSE 3.0.
*
* @since org.eclipse.rse.ui 3.0
* @return true if cancelled * @return true if cancelled
*/ */
public boolean isCancelled() { public boolean isCancelled() {