mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-19 22:25:52 +02:00
[releng][cleanup] Fix @since tags according to API Tooling
This commit is contained in:
parent
ab9d7e283b
commit
c607dc0f72
8 changed files with 96 additions and 61 deletions
|
@ -151,7 +151,9 @@ public class ClientConnection
|
|||
* Creates a new ClientConnection instance
|
||||
*
|
||||
* @param name an identifier for this connection
|
||||
* @param notifier the notifier used to keep the user interface in synch with the DataStore
|
||||
* @param notifier the notifier used to keep the user interface in synch
|
||||
* with the DataStore
|
||||
* @since 3.0 changed DomainNotifier into IDomainNotifier
|
||||
*/
|
||||
public ClientConnection(String name, IDomainNotifier notifier)
|
||||
{
|
||||
|
@ -164,8 +166,10 @@ public class ClientConnection
|
|||
* Creates a new ClientConnection instance
|
||||
*
|
||||
* @param name an identifier for this connection
|
||||
* @param notifier the notifier used to keep the user interface in synch with the DataStore
|
||||
* @param notifier the notifier used to keep the user interface in synch
|
||||
* with the DataStore
|
||||
* @param initialSize the number of elements to preallocate in the DataStore
|
||||
* @since 3.0 changed DomainNotifier into IDomainNotifier
|
||||
*/
|
||||
public ClientConnection(String name, IDomainNotifier notifier, int initialSize)
|
||||
{
|
||||
|
@ -200,10 +204,18 @@ public class ClientConnection
|
|||
_dataStore.setSSLProperties(properties);
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.0 changed DataStoreCompatibilityHandler into
|
||||
* IDataStoreCompatibilityHandler
|
||||
*/
|
||||
public void setCompatibilityHandler(IDataStoreCompatibilityHandler handler){
|
||||
_dataStore.setCompatibilityHandler(handler);
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.0 changed DataStoreCompatibilityHandler into
|
||||
* IDataStoreCompatibilityHandler
|
||||
*/
|
||||
public IDataStoreCompatibilityHandler getCompatibilityHandler(){
|
||||
return _dataStore.getCompatibilityHandler();
|
||||
}
|
||||
|
@ -222,6 +234,7 @@ public class ClientConnection
|
|||
* Adds a loader to be used to instantiate the miners
|
||||
*
|
||||
* @param loader the loader
|
||||
* @since 3.0 changed ExternalLoader into IExternalLoader
|
||||
*/
|
||||
public void addLoader(IExternalLoader loader)
|
||||
{
|
||||
|
@ -429,6 +442,9 @@ public class ClientConnection
|
|||
return connect(launchStatus.getTicket());
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.0 changed DataStoreTrustManager into IDataStoreTrustManager
|
||||
*/
|
||||
public IDataStoreTrustManager getTrustManager()
|
||||
{
|
||||
if (_trustManager == null)
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
package org.eclipse.dstore.core.miners;
|
||||
|
||||
import org.eclipse.dstore.core.server.SecuredThread;
|
||||
import org.eclipse.dstore.core.model.DataStore;
|
||||
import org.eclipse.dstore.core.server.SecuredThread;
|
||||
|
||||
/**
|
||||
* MinerThread is a utility class used for doing threaded operations in a miner.
|
||||
|
@ -37,8 +37,11 @@ public abstract class MinerThread extends SecuredThread
|
|||
_isCancelled = false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Constructor with dataStore
|
||||
* Constructor with dataStore.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public MinerThread(DataStore dataStore)
|
||||
{
|
||||
|
|
|
@ -22,7 +22,10 @@ import org.eclipse.dstore.core.server.IServerLogger;
|
|||
import org.eclipse.dstore.core.server.ServerReceiver;
|
||||
|
||||
/**
|
||||
* A DStore Client representing a user's connection in the multi-process
|
||||
* dstore server.
|
||||
* @noextend This class is not intended to be subclassed by clients.
|
||||
* @since 3.0
|
||||
*/
|
||||
public class Client
|
||||
{
|
||||
|
|
|
@ -206,6 +206,9 @@ public abstract class CommandHandler extends Handler
|
|||
_commands.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.0 CommandGenerator moved from "internal" to API
|
||||
*/
|
||||
public CommandGenerator getCommandGenerator()
|
||||
{
|
||||
return _commandGenerator;
|
||||
|
|
|
@ -13,7 +13,9 @@
|
|||
********************************************************************************/
|
||||
package org.eclipse.dstore.core.model;
|
||||
|
||||
|
||||
/**
|
||||
* @since 3.0
|
||||
*/
|
||||
public class DefaultDataStoreCompatibilityHandler implements
|
||||
IDataStoreCompatibilityHandler {
|
||||
private DataStore _dataStore;
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
package org.eclipse.dstore.core.model;
|
||||
|
||||
|
||||
/**
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface IDataStoreCompatibilityHandler {
|
||||
public static final int HANDSHAKE_INCORRECT = 0;
|
||||
public static final int HANDSHAKE_SERVER_OLDER = 1;
|
||||
|
|
|
@ -14,8 +14,10 @@
|
|||
package org.eclipse.dstore.core.model;
|
||||
|
||||
/**
|
||||
* Classes that implement this and add themselves to the DataStore preference listeners
|
||||
* get called each time a preference is changed.
|
||||
* Classes that implement this and add themselves to the DataStore preference
|
||||
* listeners get called each time a preference is changed.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface IDataStorePreferenceListener {
|
||||
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
|
||||
package org.eclipse.dstore.core.server;
|
||||
|
||||
/**
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface IServerLogger
|
||||
{
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue