data. ... got lost
[mir.git] / source / mircoders / entity / EntityLinksImcs.java
1 package mircoders.entity;
2
3 import  java.util.*;
4
5 import  mir.entity.*;
6 import  mir.storage.*;
7 import  mir.storage.store.*;
8
9 /**
10  * Diese Klasse enthält die Daten eines MetaObjekts
11  *
12  * @author RK
13  * @version 29.6.1999
14  */
15
16
17 public class EntityLinksImcs extends Entity implements StorableObject
18 {
19
20   public EntityLinksImcs(){
21           super();
22   }
23
24   public EntityLinksImcs(StorageObject theStorage)
25   {
26     this();
27     setStorage(theStorage);
28   }
29
30     /**
31    *  Method:       getStoreIdentifier
32    *  Description:  returns unique StoreIdentifer under which the Entity
33    *                is Stored. Based upon primary key and tablename.
34    *
35    *  @return       StoreIdentifier
36    */
37   public StoreIdentifier getStoreIdentifier() {
38     String id = getId();
39     if ( id!=null && theStorageObject!= null )
40      return new StoreIdentifier(this, id+"@"+theStorageObject.getTableName());
41     return null;
42   }
43
44   /**
45    *  Method:       getNotifyOnReleaseSet()
46    *  Description:  returns empty Set, GenericContainer does not implement
47    *                dependencies.
48    *
49    *  @return       null
50    */
51   public Set getNotifyOnReleaseSet() { return null; }
52
53 }
54