1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 06:45:43 +02:00

[cleanup] Get rid of invalid @noinstantiate on abstract classes

This commit is contained in:
Martin Oberhuber 2008-05-19 19:28:25 +00:00
parent 4120cbbdf6
commit 0edfb1a122
3 changed files with 65 additions and 66 deletions

View file

@ -25,18 +25,17 @@ import org.eclipse.dstore.core.util.CommandGenerator;
/** /**
* <p> * <p>
* Abtract class for handling commands. A <code>CommandHandler</code> is a <code>Handler</code> that * Abstract class for handling commands. A <code>CommandHandler</code> is a
* contains a queue of commands to be sent to miners. Each DataStore instance uses a single * <code>Handler</code> that contains a queue of commands to be sent to miners.
* command handler that periodically sends it's queue either to a server or directly * Each DataStore instance uses a single command handler that periodically sends
* to miners. * it's queue either to a server or directly to miners.
* </p> * </p>
* <p> * <p>
* The CommandHandler is the means by which the DataStore sends information or files from * The CommandHandler is the means by which the DataStore sends information or
* the client to the remote tools. * files from the client to the remote tools.
* </p> * </p>
* *
* @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.
*/ */
public abstract class CommandHandler extends Handler public abstract class CommandHandler extends Handler
{ {

View file

@ -26,17 +26,18 @@ import org.eclipse.dstore.internal.core.util.DataElementRemover;
/** /**
* <p> * <p>
* Abtract class for handling updates. A <code>UpdateHandler</code> is a <code>Handler</code> that * Abstract class for handling updates. A <code>UpdateHandler</code> is a
* contains a queue of data responses to be sent to the client. Each DataStore instance uses a single * <code>Handler</code> that contains a queue of data responses to be sent to
* update handler that periodically sends it's data queue either to a client or directly * the client. Each DataStore instance uses a single update handler that
* to a domain listener on the client. * periodically sends it's data queue either to a client or directly to a domain
* listener on the client.
* </p> * </p>
* <p> * <p>
* The UpdateHandler is the means by which the DataStore sends information or files from the remote tools to the client. * The UpdateHandler is the means by which the DataStore sends information or
* files from the remote tools to the client.
* </p> * </p>
* *
* @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.
*/ */
public abstract class UpdateHandler extends Handler public abstract class UpdateHandler extends Handler
{ {

View file

@ -37,7 +37,6 @@ 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.
* @noinstantiate This class is not intended to be instantiated by clients.
*/ */
public abstract class Receiver extends SecuredThread implements IDataStorePreferenceListener public abstract class Receiver extends SecuredThread implements IDataStorePreferenceListener
{ {