* @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;
}
* @see org.vamsas.client.IClientDocument#getObjects(org.vamsas.client.VorbaId[])
*/
public object[] getObjects(VorbaId[] ids) {
- // getObject in bulk
+ // TODO: getObject in bulk
return null;
}
* @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;
}