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;
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
// ==============================================================================================================================