latest schema.
[vamsas.git] / src / org / vamsas / client / object.java
index 4f19c26..e1384a4 100644 (file)
@@ -18,6 +18,7 @@ public abstract class object {
      * to any object in the vamsas document
      */
        protected boolean __stored_in_document=false;
+    protected long __last_hash=0;
     protected VorbaId vorbaId=null;
     protected IVorbaIdFactory __vorba=null;
     /**
@@ -68,4 +69,14 @@ public abstract class object {
     protected void set__stored_in_document(boolean __stored_in_document) {
       this.__stored_in_document = __stored_in_document;
     }
+    /**
+     * __last_hash is the hash value computed 
+     * when the object was last checked against 
+     * a IClientDocument generated by the 
+     * object's parent IClient instance.
+     * @return Returns the __last_hash.
+     */
+    public long get__last_hash() {
+      return __last_hash;
+    }
 }