Salome HOME
Mapping is fixed. Relation in the mapping is inherited from Persistent now. Versionin...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / som / ProjectElement.java
index 9e8655d23ad4203e7443867d00a9dd9589e4e64d..fd8d747c97a3c5e57b0d62dbf23cb16dcbac2b3c 100644 (file)
@@ -30,8 +30,8 @@ public abstract class ProjectElement extends Entity {
     protected  User                     manager;
     protected  Date                     credate;    // Object creation date
     protected  Date                     lasdate;    // Object Last modification date
-    private    List<SimulationContext>  contex;     // Structured by the Step transient class
-    private    Set<Publication>         docums;     // Structured by the Step transient class
+    private    List<SimulationContext>  contex = new Vector<SimulationContext>();     // Structured by the Step transient class
+    private    Set<Publication>         docums = new LinkedHashSet<Publication>();     // Structured by the Step transient class
 
 //  Transient field
     private    Step[]                   folders;
@@ -69,8 +69,8 @@ public abstract class ProjectElement extends Entity {
       title    = null;     // Initialized by subclasses
       credate  = null;     // Initialized by subclasses
       lasdate  = null;     // Initialized by subclasses
-      docums   = new LinkedHashSet<Publication>();
-      contex   = new Vector<SimulationContext>();
+//RKV      docums   = new LinkedHashSet<Publication>();
+//RKV      contex   = new Vector<SimulationContext>();
       
       folders  = null;
     }