mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 12:35:22 +02:00
[cleanup] Fix @since tag format
This commit is contained in:
parent
dbd1657b40
commit
60105e8ddf
2 changed files with 15 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue