1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +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

@ -60,7 +60,7 @@ import org.eclipse.swt.widgets.Text;
/**
* A dialog for showing SystemMessages and optionally asking the user for Yes /
* No / Ok / Cancel type of response.
*
*
* The client may choose to construct and open the dialog itself, or use one of
* the provided static factory methods, which construct the dialog and
* synchronously open it without thread switch (must be called on the UI
@ -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.
* Eats up the IndicatorException, so only call this when you know what you are doing!
* @since 3.0 taking a boolean arg
* opens the dialog with an optional Yes/No or OK, Details button for an
* Inquiry/Question message. Eats up the IndicatorException, so only call
* 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)
{

View file

@ -160,7 +160,7 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
public class PromptForPassword implements Runnable
{
public SubSystem _ss;
private boolean isCancelled = false;
private volatile boolean isCancelled = false;
public PromptForPassword(SubSystem 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
*/
public boolean isCancelled() {