Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-05-16 15:02:50 +0000
committerslewis2007-05-16 15:02:50 +0000
commit80cbbe89cef2c4f67618f21c0a2c39251d98a01f (patch)
treef10e8e969f9666ded933093f77c08dd21fb7e7a5 /examples/bundles/org.eclipse.ecf.example.sdo.editor
parentcd9b709db3f50f9a6cb855cb5c927d0406784656 (diff)
downloadorg.eclipse.ecf-80cbbe89cef2c4f67618f21c0a2c39251d98a01f.tar.gz
org.eclipse.ecf-80cbbe89cef2c4f67618f21c0a2c39251d98a01f.tar.xz
org.eclipse.ecf-80cbbe89cef2c4f67618f21c0a2c39251d98a01f.zip
Refactoring of collab example code
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.example.sdo.editor')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/EditorPlugin.java2
-rw-r--r--examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/PublishedGraphTracker.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/EditorPlugin.java b/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/EditorPlugin.java
index 2bfee1b39..9afe0df94 100644
--- a/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/EditorPlugin.java
+++ b/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/EditorPlugin.java
@@ -21,7 +21,7 @@ import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDFactory;
import org.eclipse.ecf.core.sharedobject.ISharedObjectContainer;
import org.eclipse.ecf.core.util.ECFException;
-import org.eclipse.ecf.example.collab.CollabClient;
+import org.eclipse.ecf.internal.example.collab.CollabClient;
import org.eclipse.ecf.sdo.DataGraphSharingFactory;
import org.eclipse.ecf.sdo.ISharedDataGraph;
import org.eclipse.ecf.sdo.IUpdateConsumer;
diff --git a/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/PublishedGraphTracker.java b/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/PublishedGraphTracker.java
index 2569510d9..7c81e3f20 100644
--- a/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/PublishedGraphTracker.java
+++ b/examples/bundles/org.eclipse.ecf.example.sdo.editor/src/org/eclipse/ecf/example/sdo/editor/PublishedGraphTracker.java
@@ -41,9 +41,9 @@ import org.eclipse.ecf.core.util.Event;
* It works something like this:
* </p>
* <ul>
- * <li>The client should first check if an instance of this shared object
+ * <li>The container should first check if an instance of this shared object
* already exists in their container. If not, create one and add it.</li>
- * <li>The client should call {@link #add(ID) add()}once published/subscribed
+ * <li>The container should call {@link #add(ID) add()}once published/subscribed
* to a data graph. The method will block until this object activates (if it
* hasn't already).</li>
* <li>Upon activation, the primary instance replicates everywhere. This is to

Back to the top