From bc7e4b22345e153e405ea9533f2922379f110e4c Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Tue, 5 Feb 2008 20:40:37 +0000 Subject: [PATCH] [apidoc] get rid of outdated references to SystemManager --- .../org.eclipse.rse.doc.isv/guide/plugin/subsystem.html | 9 ++++----- .../guide/tutorial/subsystem.html | 2 +- .../core/subsystems/AbstractConnectorServiceManager.java | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) 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 6c06ea77f5c..d601e1b06de 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 @@ -125,9 +125,9 @@ following summarizes the minimum set of classes you will be creating in order to Represents and manages a live connection to the remote system, doing the connecting and disconnecting. - system manager + connector service manager AbstractConnectorServiceManager - Manages a single system instance that is shared among multiple subsystems in a single connection. Even if you only have a single subsystem configuration it is useful to use this in + Manages a single connector service instance that is shared among multiple subsystems in a single connection. Even if you only have a single subsystem configuration it is useful to use this in case you later add additional factories, and their subsystems share the same communication pipe. To enable this, all your subsystem classes need to implement a unique interface of your own creation. @@ -184,9 +184,8 @@ following summarizes the minimum set of classes you will be creating in order to
  • Creating a subclass of SubSystem that implements the interface you designed in step 1. This will: