1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 21:15:23 +02:00

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

This commit is contained in:
Martin Oberhuber 2008-06-04 10:54:42 +00:00
parent 2b1dd8f0b3
commit 35bbf33e9b
11 changed files with 225 additions and 201 deletions

View file

@ -61,6 +61,8 @@ import org.eclipse.dstore.internal.core.util.ssl.DStoreSSLContext;
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*
* @since 3.0 moved from non-API to API
*/
public class ConnectionEstablisher
{

View file

@ -18,6 +18,9 @@ package org.eclipse.dstore.core.server;
import org.eclipse.dstore.core.model.Client;
/**
* @since 3.0
*/
public interface ISystemService
{
/**

View file

@ -21,6 +21,9 @@ import java.io.PrintWriter;
import org.eclipse.dstore.core.model.DataStore;
/**
* @since 3.0
*/
public class SecuredThread extends Thread
{

View file

@ -167,10 +167,13 @@ public class Server implements Runnable
_establisher.start();
}
/**
* Return the reference for the ConnectionEstablisher for this client
*
* * @return the the reference for the ConnectionEstablisher instance for this client
* @return the the reference for the ConnectionEstablisher instance for this
* client
* @since 3.0
*/
public ConnectionEstablisher getEstablisher()
{

View file

@ -27,8 +27,10 @@ import java.util.Date;
import java.util.ResourceBundle;
/**
* Class that facilitates logging for errors, warnings, debug messages and info for DataStore
* servers.
* Class that facilitates logging for errors, warnings, debug messages and info
* for DataStore servers.
*
* @since 3.0 moved from non-API to API
*/
public class ServerLogger implements IServerLogger
{

View file

@ -25,11 +25,11 @@ import org.eclipse.dstore.core.model.DataElement;
import org.eclipse.dstore.core.util.Receiver;
/**
* The ServerReciever is responsible for recieving data from
* the client side.
* The ServerReciever is responsible for recieving data from the client side.
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
* @since 3.0 moved from non-API to API
*/
public class ServerReceiver extends Receiver
{

View file

@ -15,7 +15,9 @@
package org.eclipse.dstore.core.server;
/**
* @since 3.0
*/
public class SystemServiceManager
{
private static SystemServiceManager instance = null;

View file

@ -26,13 +26,16 @@ import org.eclipse.dstore.core.model.DataStore;
import org.eclipse.dstore.core.model.DataStoreResources;
/**
* This class is used to generate command object instances from command descriptors and arguments to commands.
* Command instances are instances of command descriptors. Each command instance contains a set of data arguments
* and a status object, that represents the current state of a command. After a command instance is created,
* it is referenced in the command log for the DataStore.
* This class is used to generate command object instances from command
* descriptors and arguments to commands. Command instances are instances of
* command descriptors. Each command instance contains a set of data arguments
* and a status object, that represents the current state of a command. After a
* command instance is created, it is referenced in the command log for the
* DataStore.
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
* @since 3.0 moved from non-API to API
*/
public class CommandGenerator
{

View file

@ -37,6 +37,7 @@ import org.eclipse.dstore.internal.core.util.XMLparser;
* communication layer.
*
* @noextend This class is not intended to be subclassed by clients.
* @since 3.0 Moved from non-API to API
*/
public abstract class Receiver extends SecuredThread implements IDataStorePreferenceListener
{

View file

@ -17,6 +17,10 @@ import java.util.List;
import javax.net.ssl.X509TrustManager;
/**
* Extracted interface from DataStoreTrustManager.
* @since 3.0
*/
public interface IDataStoreTrustManager extends X509TrustManager
{
/**

View file

@ -502,6 +502,7 @@ public class ArchiveHandlerManager
* Create an empty archive
*
* @throws SystemMessageException in case of an error
* @since 3.0 returns void but throws SystemMessageException
*/
public void createEmptyArchive(File newFile) throws SystemMessageException
{