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
|
@ -60,7 +60,7 @@ import org.eclipse.swt.widgets.Text;
|
||||||
/**
|
/**
|
||||||
* A dialog for showing SystemMessages and optionally asking the user for Yes /
|
* A dialog for showing SystemMessages and optionally asking the user for Yes /
|
||||||
* No / Ok / Cancel type of response.
|
* No / Ok / Cancel type of response.
|
||||||
*
|
*
|
||||||
* The client may choose to construct and open the dialog itself, or use one of
|
* 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
|
* the provided static factory methods, which construct the dialog and
|
||||||
* synchronously open it without thread switch (must be called on the UI
|
* 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.
|
* 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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue