mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-05 06:33:23 +02:00
[releng][cleanup] Fix @since tags according to API Tooling
This commit is contained in:
parent
c607dc0f72
commit
ad994314e3
1 changed files with 394 additions and 377 deletions
|
@ -212,6 +212,7 @@ public final class DataStore
|
|||
* @param commandHandler the DataStore's handler for sending commands
|
||||
* @param updateHandler the DataStore's handler for doing updates
|
||||
* @param domainNotifier the domain notifier
|
||||
* @since 3.0 replaced DomainNotifier with IDomainNotifier
|
||||
*/
|
||||
public DataStore(DataStoreAttributes attributes, CommandHandler commandHandler, UpdateHandler updateHandler, IDomainNotifier domainNotifier)
|
||||
{
|
||||
|
@ -234,7 +235,9 @@ public final class DataStore
|
|||
* @param commandHandler the DataStore's handler for sending commands
|
||||
* @param updateHandler the DataStore's handler for doing updates
|
||||
* @param domainNotifier the domain notifier
|
||||
* @param initialSize the initialNumber of preallocated <code>DataElement</code>s
|
||||
* @param initialSize the initialNumber of preallocated
|
||||
* <code>DataElement</code>s
|
||||
* @since 3.0 replaced DomainNotifier with IDomainNotifier
|
||||
*/
|
||||
public DataStore(DataStoreAttributes attributes, CommandHandler commandHandler, UpdateHandler updateHandler, IDomainNotifier domainNotifier, int initialSize)
|
||||
{
|
||||
|
@ -305,6 +308,7 @@ public final class DataStore
|
|||
* Adds a loader for this <code>DataStore</code>. The loader is used to load miners (extension tools).
|
||||
*
|
||||
* @param loader the loader for the miners this <code>DataStore</code> will be using
|
||||
* @since 3.0 replaced ExternalLoader by IExternalLoader
|
||||
*/
|
||||
public void addLoader(IExternalLoader loader)
|
||||
{
|
||||
|
@ -424,6 +428,7 @@ public final class DataStore
|
|||
* Sets the <code>DataStore</code>'s IDomainNotifier
|
||||
*
|
||||
* @param domainNotifier the domainNotifier
|
||||
* @since 3.0 replaced DomainNotifier by IDomainNotifier
|
||||
*/
|
||||
public void setDomainNotifier(IDomainNotifier domainNotifier)
|
||||
{
|
||||
|
@ -451,18 +456,22 @@ public final class DataStore
|
|||
}
|
||||
|
||||
/**
|
||||
* Set the compatibility handler for the client. This is used when potential compatibility
|
||||
* problems are run into - i.e. localDescriptorQuery fails
|
||||
* Set the compatibility handler for the client. This is used when potential
|
||||
* compatibility problems are run into - i.e. localDescriptorQuery fails
|
||||
*
|
||||
* @param handler the compatibilityHandler to use
|
||||
* @since 3.0
|
||||
*/
|
||||
public void setCompatibilityHandler(IDataStoreCompatibilityHandler handler){
|
||||
_compatibilityHandler = handler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the compatibility handler for the client. This is used when potential compatibility
|
||||
* problems are run into - i.e. localDescriptorQuery fails
|
||||
* Get the compatibility handler for the client. This is used when potential
|
||||
* compatibility problems are run into - i.e. localDescriptorQuery fails
|
||||
*
|
||||
* @return the compatibilityHandler
|
||||
* @since 3.0
|
||||
*/
|
||||
public IDataStoreCompatibilityHandler getCompatibilityHandler(){
|
||||
if (_compatibilityHandler == null){
|
||||
|
@ -510,7 +519,9 @@ public final class DataStore
|
|||
|
||||
/**
|
||||
* Gets the time the server may remain idle before shutting down
|
||||
*
|
||||
* @return the idle time before shutdown
|
||||
* @since 3.0
|
||||
*/
|
||||
public int getServerIdleShutdownTimeout()
|
||||
{
|
||||
|
@ -802,6 +813,7 @@ public final class DataStore
|
|||
* Returns the domain notifier.
|
||||
*
|
||||
* @return the domain notifier
|
||||
* @since 3.0 replaced DomainNotifier by IDomainNotifier
|
||||
*/
|
||||
public IDomainNotifier getDomainNotifier()
|
||||
{
|
||||
|
@ -2117,11 +2129,14 @@ public final class DataStore
|
|||
}
|
||||
|
||||
/**
|
||||
* Sets a property value preference on the client datastore. If remoteAndLocal is set
|
||||
* then the property get set on the server side as well as the client.
|
||||
* Sets a property value preference on the client datastore. If
|
||||
* remoteAndLocal is set then the property get set on the server side as
|
||||
* well as the client.
|
||||
*
|
||||
* @param property the property to set
|
||||
* @param value the value of the property
|
||||
* @param remoteAndLocal whether to propagate the change to the server
|
||||
* @since 3.0
|
||||
*/
|
||||
public void setPreference(String property, String value, boolean remoteAndLocal)
|
||||
{
|
||||
|
@ -2161,6 +2176,7 @@ public final class DataStore
|
|||
/**
|
||||
* Removes a specific preference change listener from the Datastore
|
||||
* @param listener
|
||||
* @since 3.0
|
||||
*/
|
||||
public void removeDataStorePreferenceListener(IDataStorePreferenceListener listener){
|
||||
_dataStorePreferenceListeners.remove(listener);
|
||||
|
@ -2168,6 +2184,7 @@ public final class DataStore
|
|||
|
||||
/**
|
||||
* Removes all the preference change listeners
|
||||
* @since 3.0
|
||||
*/
|
||||
public void removeAllDataStorePreferenceListeners(){
|
||||
_dataStorePreferenceListeners.clear();
|
||||
|
|
Loading…
Add table
Reference in a new issue