Salome HOME
DTO is introduced for knowledge elements. BeanHelper is modified so that setters...
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / OpenObject.java
index 8231fa5016f0580780ff0ea0482b21a798d444a2..a4a9bdd8620849413df519b4b6d977f6402f4ee3 100644 (file)
@@ -28,17 +28,44 @@ public abstract class OpenObject implements Proxy {
        protected static HashMap<Long, DocumentFacade> docpres = null;
        protected static HashMap<Long, KnowledgeElementFacade> knowpres = null;
 
-       protected User cuser = null; // Connected user
-       protected String selection = null; // Menu selected by the user
-       protected Step ustep = null; // Corresponding selected step
-       protected String description = null; // Object description (rich text)
+       /**
+        * Connected user.
+        */
+       protected User cuser = null;
+       /**
+        * Menu selected by the user.
+        */
+       protected String selection = null;
+       /**
+        * Corresponding selected step.
+        */
+       protected Step ustep = null;
+       /**
+        * Object description (rich text).
+        */
+       protected String description = null;
        protected List<Step> involving = new ArrayList<Step>();
+       /**
+        * Simulation Context display representations.
+        */
        protected List<SimulationContextFacade> context = new ArrayList<SimulationContextFacade>(); // Simulation Context display representations
-       protected List<DocumentFacade> contents = null; // Document display representations
-       protected List<KnowledgeIterator> knowledge = null; // Knowledge Element display representations structured by knowledge types
+       /**
+        * Document display representations.
+        */
+       protected List<DocumentFacade> contents = null;
+       /**
+        * Knowledge Element display representations structured by knowledge types.
+        */
+       protected List<KnowledgeIterator> knowledge = null;
 
-       protected Menu menu = null; // Left pane menu of this object
-       protected PopupMenu popup = null; // Pop-up menu of this object, if the user has write access
+       /**
+        * Left pane menu of this object.
+        */
+       protected Menu menu = null;
+       /**
+        * Pop-up menu of this object, if the user has write access.
+        */
+       protected PopupMenu popup = null;
        /**
         * Injected project settings service.
         */