Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2009-12-10 21:42:09 +0000
committerJohn Cortell2009-12-10 21:42:09 +0000
commit5687f0ee0fc042b571c090ad3f5848d51db8a01c (patch)
tree64ed77ccdbf815258dbd2e977ba2f8619bb136e6 /dsf/org.eclipse.cdt.dsf
parentceaa353fb981af8a64352848b2c934060500a14e (diff)
downloadorg.eclipse.cdt-5687f0ee0fc042b571c090ad3f5848d51db8a01c.tar.gz
org.eclipse.cdt-5687f0ee0fc042b571c090ad3f5848d51db8a01c.tar.xz
org.eclipse.cdt-5687f0ee0fc042b571c090ad3f5848d51db8a01c.zip
Documentation improvement
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/AbstractDsfService.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/AbstractDsfService.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/AbstractDsfService.java
index 411b2a64bdb..06ab24ecfa0 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/AbstractDsfService.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/AbstractDsfService.java
@@ -117,10 +117,12 @@ abstract public class AbstractDsfService
*
* @param classes
* The class names under which the service can be located. For
- * convenience, [classes] need not contain {@link IDsfService} or this
- * base class; they are automatically added if not present. The
- * class names in this array will be stored in the service's
- * properties under the key {@link Constants#OBJECTCLASS}.
+ * convenience, [classes] need not contain {@link IDsfService} or
+ * the runtime class of this object; they are automatically added
+ * if not present. The complete list of classes the service ends
+ * up being registered with in OSGi is recorded and made
+ * available via
+ * <code>getProperties().get(Constants.OBJECTCLASS)</code>
* @param properties
* The properties for this service. The keys in the properties
* object must all be <code>String</code> objects. See

Back to the top