mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 05:25:21 +02:00
[releng][cleanup] Fix @since tags according to API Tooling
This commit is contained in:
parent
2b1dd8f0b3
commit
35bbf33e9b
11 changed files with 225 additions and 201 deletions
|
@ -61,6 +61,8 @@ import org.eclipse.dstore.internal.core.util.ssl.DStoreSSLContext;
|
||||||
*
|
*
|
||||||
* @noextend This class is not intended to be subclassed by clients.
|
* @noextend This class is not intended to be subclassed by clients.
|
||||||
* @noinstantiate This class is not intended to be instantiated 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
|
public class ConnectionEstablisher
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,6 +18,9 @@ package org.eclipse.dstore.core.server;
|
||||||
|
|
||||||
import org.eclipse.dstore.core.model.Client;
|
import org.eclipse.dstore.core.model.Client;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.0
|
||||||
|
*/
|
||||||
public interface ISystemService
|
public interface ISystemService
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -21,6 +21,9 @@ import java.io.PrintWriter;
|
||||||
|
|
||||||
import org.eclipse.dstore.core.model.DataStore;
|
import org.eclipse.dstore.core.model.DataStore;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.0
|
||||||
|
*/
|
||||||
public class SecuredThread extends Thread
|
public class SecuredThread extends Thread
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -167,10 +167,13 @@ public class Server implements Runnable
|
||||||
_establisher.start();
|
_establisher.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the reference for the ConnectionEstablisher for this client
|
* 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()
|
public ConnectionEstablisher getEstablisher()
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,8 +27,10 @@ import java.util.Date;
|
||||||
import java.util.ResourceBundle;
|
import java.util.ResourceBundle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class that facilitates logging for errors, warnings, debug messages and info for DataStore
|
* Class that facilitates logging for errors, warnings, debug messages and info
|
||||||
* servers.
|
* for DataStore servers.
|
||||||
|
*
|
||||||
|
* @since 3.0 moved from non-API to API
|
||||||
*/
|
*/
|
||||||
public class ServerLogger implements IServerLogger
|
public class ServerLogger implements IServerLogger
|
||||||
{
|
{
|
||||||
|
|
|
@ -25,11 +25,11 @@ import org.eclipse.dstore.core.model.DataElement;
|
||||||
import org.eclipse.dstore.core.util.Receiver;
|
import org.eclipse.dstore.core.util.Receiver;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The ServerReciever is responsible for recieving data from
|
* The ServerReciever is responsible for recieving data from the client side.
|
||||||
* the client side.
|
|
||||||
*
|
*
|
||||||
* @noextend This class is not intended to be subclassed by clients.
|
* @noextend This class is not intended to be subclassed by clients.
|
||||||
* @noinstantiate This class is not intended to be instantiated 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
|
public class ServerReceiver extends Receiver
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,7 +15,9 @@
|
||||||
|
|
||||||
package org.eclipse.dstore.core.server;
|
package org.eclipse.dstore.core.server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.0
|
||||||
|
*/
|
||||||
public class SystemServiceManager
|
public class SystemServiceManager
|
||||||
{
|
{
|
||||||
private static SystemServiceManager instance = null;
|
private static SystemServiceManager instance = null;
|
||||||
|
|
|
@ -26,13 +26,16 @@ import org.eclipse.dstore.core.model.DataStore;
|
||||||
import org.eclipse.dstore.core.model.DataStoreResources;
|
import org.eclipse.dstore.core.model.DataStoreResources;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class is used to generate command object instances from command descriptors and arguments to commands.
|
* This class is used to generate command object instances from command
|
||||||
* Command instances are instances of command descriptors. Each command instance contains a set of data arguments
|
* descriptors and arguments to commands. Command instances are instances of
|
||||||
* and a status object, that represents the current state of a command. After a command instance is created,
|
* command descriptors. Each command instance contains a set of data arguments
|
||||||
* it is referenced in the command log for the DataStore.
|
* 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.
|
* @noextend This class is not intended to be subclassed by clients.
|
||||||
* @noinstantiate This class is not intended to be instantiated 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
|
public class CommandGenerator
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.eclipse.dstore.internal.core.util.XMLparser;
|
||||||
* communication layer.
|
* communication layer.
|
||||||
*
|
*
|
||||||
* @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 Moved from non-API to API
|
||||||
*/
|
*/
|
||||||
public abstract class Receiver extends SecuredThread implements IDataStorePreferenceListener
|
public abstract class Receiver extends SecuredThread implements IDataStorePreferenceListener
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,6 +17,10 @@ import java.util.List;
|
||||||
|
|
||||||
import javax.net.ssl.X509TrustManager;
|
import javax.net.ssl.X509TrustManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extracted interface from DataStoreTrustManager.
|
||||||
|
* @since 3.0
|
||||||
|
*/
|
||||||
public interface IDataStoreTrustManager extends X509TrustManager
|
public interface IDataStoreTrustManager extends X509TrustManager
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -502,6 +502,7 @@ public class ArchiveHandlerManager
|
||||||
* Create an empty archive
|
* Create an empty archive
|
||||||
*
|
*
|
||||||
* @throws SystemMessageException in case of an error
|
* @throws SystemMessageException in case of an error
|
||||||
|
* @since 3.0 returns void but throws SystemMessageException
|
||||||
*/
|
*/
|
||||||
public void createEmptyArchive(File newFile) throws SystemMessageException
|
public void createEmptyArchive(File newFile) throws SystemMessageException
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue