Salome HOME
Comments added.
authorrkv <rkv@opencascade.com>
Wed, 14 Nov 2012 06:49:36 +0000 (06:49 +0000)
committerrkv <rkv@opencascade.com>
Wed, 14 Nov 2012 06:49:36 +0000 (06:49 +0000)
Workspace/Siman-Common/src/org/splat/dal/bo/som/ProjectElement.java

index 74c5a59596119deb8e23673c6399089cae9112d4..cae063c741d049d7be7c0fc6981953ae8627dc11 100644 (file)
@@ -13,7 +13,6 @@ import java.util.List;
 import java.util.Set;
 import java.util.Vector;
 
-import org.apache.log4j.Logger;
 import org.splat.dal.bo.kernel.Entity;
 import org.splat.dal.bo.kernel.User;
 import org.splat.kernel.InvalidPropertyException;
@@ -33,26 +32,26 @@ public abstract class ProjectElement extends Entity {
     private final    List<SimulationContext>  contex = new Vector<SimulationContext>();     // Structured by the Step transient class
     private final    Set<Publication>         docums = new LinkedHashSet<Publication>();     // Structured by the Step transient class
 
-//  Transient field
+    /**
+     * Transient array of steps (folders).
+     */
     private    Step[]                   folders;
 
     /**
-        * Set the folders.
-        * @param folders the folders to set
+        * Set the transient array of steps (folders).
+        * @param folders the steps to set
         */
        public void setFolders(final Step[] folders) {
                this.folders = folders;
        }
        /**
-        * Get the folders.
-        * @return the folders
+        * Get the transient array of steps (folders).
+        * @return the array of steps
         */
        public Step[] getFolders() {
                return folders;
        }
 
-       protected final static Logger       LOGGER = Logger.getLogger(ProjectElement.class);
-
 //  ==============================================================================================================================
 //  Constructors
 //  ==============================================================================================================================