added a couple of TODO: entries.
authorjprocter <jprocter@compbio.dundee.ac.uk>
Fri, 13 Jan 2006 12:36:40 +0000 (12:36 +0000)
committerjprocter <jprocter@compbio.dundee.ac.uk>
Fri, 13 Jan 2006 12:36:40 +0000 (12:36 +0000)
git-svn-id: https://svn.lifesci.dundee.ac.uk/svn/repository/trunk@105 be28352e-c001-0410-b1a7-c7978e42abec

src/org/vamsas/client/ClientDocument.java

index 66eaef0..809c6dd 100644 (file)
@@ -54,7 +54,7 @@ public class ClientDocument implements IClientDocument {
    * @see org.vamsas.client.IClientDocument#getObject(org.vamsas.client.VorbaId)
    */
   public object getObject(VorbaId id) {
-    // look up id in document object
+    // TODO: look up id in document object
     // retrieve object and return
     return null;
   }
@@ -65,7 +65,7 @@ public class ClientDocument implements IClientDocument {
    * @see org.vamsas.client.IClientDocument#getObjects(org.vamsas.client.VorbaId[])
    */
   public object[] getObjects(VorbaId[] ids) {
-    // getObject in bulk
+    // TODO: getObject in bulk
     return null;
   }
 
@@ -75,8 +75,8 @@ public class ClientDocument implements IClientDocument {
    * @see org.vamsas.client.IClientDocument#getVamsasRoots()
    */
   public object[] getVamsasRoots() {
-    // extract root objects
     if (roots == null)
+      // Make a new one to return to client : TODO: Decide if this is correct
       return new VAMSAS[] { new VAMSAS() };
     return roots;
   }