1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 06:35:50 +02:00

[releng][cleanup] Fix @since tags according to API Tooling

This commit is contained in:
Martin Oberhuber 2008-06-04 09:13:57 +00:00
parent ab9d7e283b
commit c607dc0f72
8 changed files with 96 additions and 61 deletions

View file

@ -151,7 +151,9 @@ public class ClientConnection
* Creates a new ClientConnection instance * Creates a new ClientConnection instance
* *
* @param name an identifier for this connection * @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) public ClientConnection(String name, IDomainNotifier notifier)
{ {
@ -164,8 +166,10 @@ public class ClientConnection
* Creates a new ClientConnection instance * Creates a new ClientConnection instance
* *
* @param name an identifier for this connection * @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 * @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) public ClientConnection(String name, IDomainNotifier notifier, int initialSize)
{ {
@ -200,10 +204,18 @@ public class ClientConnection
_dataStore.setSSLProperties(properties); _dataStore.setSSLProperties(properties);
} }
/**
* @since 3.0 changed DataStoreCompatibilityHandler into
* IDataStoreCompatibilityHandler
*/
public void setCompatibilityHandler(IDataStoreCompatibilityHandler handler){ public void setCompatibilityHandler(IDataStoreCompatibilityHandler handler){
_dataStore.setCompatibilityHandler(handler); _dataStore.setCompatibilityHandler(handler);
} }
/**
* @since 3.0 changed DataStoreCompatibilityHandler into
* IDataStoreCompatibilityHandler
*/
public IDataStoreCompatibilityHandler getCompatibilityHandler(){ public IDataStoreCompatibilityHandler getCompatibilityHandler(){
return _dataStore.getCompatibilityHandler(); return _dataStore.getCompatibilityHandler();
} }
@ -222,6 +234,7 @@ public class ClientConnection
* Adds a loader to be used to instantiate the miners * Adds a loader to be used to instantiate the miners
* *
* @param loader the loader * @param loader the loader
* @since 3.0 changed ExternalLoader into IExternalLoader
*/ */
public void addLoader(IExternalLoader loader) public void addLoader(IExternalLoader loader)
{ {
@ -429,6 +442,9 @@ public class ClientConnection
return connect(launchStatus.getTicket()); return connect(launchStatus.getTicket());
} }
/**
* @since 3.0 changed DataStoreTrustManager into IDataStoreTrustManager
*/
public IDataStoreTrustManager getTrustManager() public IDataStoreTrustManager getTrustManager()
{ {
if (_trustManager == null) if (_trustManager == null)

View file

@ -17,8 +17,8 @@
package org.eclipse.dstore.core.miners; 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.model.DataStore;
import org.eclipse.dstore.core.server.SecuredThread;
/** /**
* MinerThread is a utility class used for doing threaded operations in a miner. * 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; _isCancelled = false;
} }
/** /**
* Constructor with dataStore * Constructor with dataStore.
*
* @since 3.0
*/ */
public MinerThread(DataStore dataStore) public MinerThread(DataStore dataStore)
{ {

View file

@ -22,7 +22,10 @@ import org.eclipse.dstore.core.server.IServerLogger;
import org.eclipse.dstore.core.server.ServerReceiver; 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. * @noextend This class is not intended to be subclassed by clients.
* @since 3.0
*/ */
public class Client public class Client
{ {

View file

@ -206,6 +206,9 @@ public abstract class CommandHandler extends Handler
_commands.clear(); _commands.clear();
} }
/**
* @since 3.0 CommandGenerator moved from "internal" to API
*/
public CommandGenerator getCommandGenerator() public CommandGenerator getCommandGenerator()
{ {
return _commandGenerator; return _commandGenerator;

View file

@ -13,7 +13,9 @@
********************************************************************************/ ********************************************************************************/
package org.eclipse.dstore.core.model; package org.eclipse.dstore.core.model;
/**
* @since 3.0
*/
public class DefaultDataStoreCompatibilityHandler implements public class DefaultDataStoreCompatibilityHandler implements
IDataStoreCompatibilityHandler { IDataStoreCompatibilityHandler {
private DataStore _dataStore; private DataStore _dataStore;

View file

@ -14,6 +14,9 @@
package org.eclipse.dstore.core.model; package org.eclipse.dstore.core.model;
/**
* @since 3.0
*/
public interface IDataStoreCompatibilityHandler { public interface IDataStoreCompatibilityHandler {
public static final int HANDSHAKE_INCORRECT = 0; public static final int HANDSHAKE_INCORRECT = 0;
public static final int HANDSHAKE_SERVER_OLDER = 1; public static final int HANDSHAKE_SERVER_OLDER = 1;

View file

@ -14,8 +14,10 @@
package org.eclipse.dstore.core.model; package org.eclipse.dstore.core.model;
/** /**
* Classes that implement this and add themselves to the DataStore preference listeners * Classes that implement this and add themselves to the DataStore preference
* get called each time a preference is changed. * listeners get called each time a preference is changed.
*
* @since 3.0
*/ */
public interface IDataStorePreferenceListener { public interface IDataStorePreferenceListener {

View file

@ -15,6 +15,9 @@
package org.eclipse.dstore.core.server; package org.eclipse.dstore.core.server;
/**
* @since 3.0
*/
public interface IServerLogger public interface IServerLogger
{ {
/** /**