add & use is working with little testsuite. information about hits/misses added.
[mir.git] / source / mir / storage / store / test / EntityC3.java
diff --git a/source/mir/storage/store/test/EntityC3.java b/source/mir/storage/store/test/EntityC3.java
new file mode 100755 (executable)
index 0000000..3c140cb
--- /dev/null
@@ -0,0 +1,30 @@
+package mir.storage.store.test;
+
+/**
+ * Title:
+ * Description:
+ * Copyright:    Copyright (c) 2002
+ * Company:
+ * @author
+ * @version 1.0
+ */
+
+import java.util.*;
+import mir.storage.store.*;
+
+public class EntityC3 implements StorableObject {
+
+       String id;
+
+       public EntityC3(String id) {
+               this.id=id;
+       }
+
+       public StoreIdentifier getStoreIdentifier() {
+               return new StoreIdentifier(this, StoreContainerType.STOC_TYPE_ENTITY,id);
+       }
+
+       public Set getNotifyOnReleaseSet() {
+               return null;
+       }
+}
\ No newline at end of file