modified warning for unresolved IDRef during castor un/marshalling. This message...
[vamsas.git] / src / uk / ac / vamsas / client / VorbaXmlBinder.java
index dadd3fa..ca986cb 100644 (file)
@@ -216,8 +216,9 @@ public class VorbaXmlBinder implements UnmarshalListener {
     Unmarshaller unmarshaller = new Unmarshaller(root);
     unmarshaller.setIDResolver(new IDResolver() {
       public Object resolve(String id) {
+        // TODO: allow for external ID resolution
         VorbaXmlBinder.log.warn("Warning - id " + id
-            + " is not found in the Vamsas XML!");
+            + " is not found in the Vamsas XML! (TODO: Ignore if this is a forward reference!)");
         return null;
       }
     });