diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/subsystem.html b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/subsystem.html index e539d35cba4..6c06ea77f5c 100755 --- a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/subsystem.html +++ b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/subsystem.html @@ -19,7 +19,7 @@ a connection when a connection is expanded in the Remote Systems view. For example, here is an iSeries connection with four subsystems, each created by a subsystem configuration registered with this extension point.
-The extension markup is quite simple for this extension point, +
The extension markup is quite simple for this extension point, as it has only one element, <configuration>, with only a few simple attributes to supply:
It is important to remember what the purpose of a subsystem is, and how it fits in the overall RSE model, so as to understand the programming details for supporting
subsystems via this subsystem configuration extension point. Minimally speaking, this extension point requires a class that implements the interface
-ISubSystemFactory.
+ISubSystemConfiguration.
Ultimately, the intent of a subsystem configuration is to provide individual
subsystem instances to each connection, and the intent of a subsystem instance is to present remote resources for display or manipulation purposes. Thus, you must also create a class implementing the interface ISubSystem.
@@ -194,7 +194,7 @@ following summarizes the minimum set of classes you will be creating in order to
and has no eclipse-dependencies, so it can be used in your client subsystem code, or your server-side code.