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

[cleanup] Get rid of API Tooling warning about noinstantiate on abstract class

This commit is contained in:
Martin Oberhuber 2008-05-20 18:05:52 +00:00
parent 5234f4a896
commit 01eb5c301e

View file

@ -37,13 +37,14 @@ import org.eclipse.dstore.core.model.ISchemaExtender;
import org.eclipse.dstore.core.server.SystemServiceManager; import org.eclipse.dstore.core.server.SystemServiceManager;
/** /**
* Miner is the abstract base class of all DataStore extensions). * Miner is the abstract base class of all DataStore extensions). The DataStore
* The DataStore framework knows how to load and route commands to miners * framework knows how to load and route commands to miners because it
* because it interfaces miners through the restricted set of interfaces declared here. * interfaces miners through the restricted set of interfaces declared here. To
* To add a new miner, developers must extend this class and implement the abstract methods declared here. * add a new miner, developers must extend this class and implement the abstract
* * methods declared here.
* @noinstantiate This class is not intended to be instantiated by clients. The dstore server infrastructure *
* will take care of loading the Miner. * This class and its subclasses are not intended to be instantiated by clients.
* The dstore server infrastructure will take care of loading the Miner.
*/ */
public abstract class Miner extends Handler public abstract class Miner extends Handler
implements ISchemaExtender implements ISchemaExtender