mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-07 00:05:53 +02:00
[cleanup] add missing since tags
This commit is contained in:
parent
3a3006d128
commit
4eb5c19b7f
1 changed files with 191 additions and 183 deletions
|
@ -29,7 +29,6 @@
|
||||||
* David McKnight (IBM) - [220123] [api][dstore] Configurable timeout on irresponsiveness
|
* David McKnight (IBM) - [220123] [api][dstore] Configurable timeout on irresponsiveness
|
||||||
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
|
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
|
||||||
* David Dykstal (IBM) - [225089][ssh][shells][api] Canceling connection leads to exception
|
* David Dykstal (IBM) - [225089][ssh][shells][api] Canceling connection leads to exception
|
||||||
* David McKnight (IBM) - [227406][api][dstore] need apis for getting buffer size in IDataStoreProvider
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.connectorservice.dstore;
|
package org.eclipse.rse.connectorservice.dstore;
|
||||||
|
@ -1448,14 +1447,23 @@ public class DStoreConnectorService extends StandardConnectorService implements
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since org.eclipse.rse.connectorservice.dstore 3.0
|
||||||
|
*/
|
||||||
protected SystemMessage createSystemMessage(String msgId, int severity, String msg) {
|
protected SystemMessage createSystemMessage(String msgId, int severity, String msg) {
|
||||||
return createSystemMessage(msgId, severity, msg, (String)null);
|
return createSystemMessage(msgId, severity, msg, (String)null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since org.eclipse.rse.connectorservice.dstore 3.0
|
||||||
|
*/
|
||||||
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, Throwable e) {
|
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, Throwable e) {
|
||||||
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, e);
|
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since org.eclipse.rse.connectorservice.dstore 3.0
|
||||||
|
*/
|
||||||
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, String msgDetails) {
|
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, String msgDetails) {
|
||||||
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, msgDetails);
|
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, msgDetails);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue