From 01eb5c301ef7931b136c51c767f4007336329ce7 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Tue, 20 May 2008 18:05:52 +0000 Subject: [PATCH] [cleanup] Get rid of API Tooling warning about noinstantiate on abstract class --- .../src/org/eclipse/dstore/core/miners/Miner.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/miners/Miner.java b/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/miners/Miner.java index 81859773da6..f444cbda063 100644 --- a/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/miners/Miner.java +++ b/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/miners/Miner.java @@ -37,13 +37,14 @@ import org.eclipse.dstore.core.model.ISchemaExtender; import org.eclipse.dstore.core.server.SystemServiceManager; /** - * Miner is the abstract base class of all DataStore extensions). - * The DataStore framework knows how to load and route commands to miners - * because it interfaces miners through the restricted set of interfaces declared here. - * To 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. + * Miner is the abstract base class of all DataStore extensions). The DataStore + * framework knows how to load and route commands to miners because it + * interfaces miners through the restricted set of interfaces declared here. To + * add a new miner, developers must extend this class and implement the abstract + * methods declared here. + * + * 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 implements ISchemaExtender