]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc/src/main/java/org/argeo/slc/core/test/tree/PartSubList.java
Manage with Maven
[gpl/argeo-slc.git] / org.argeo.slc / src / main / java / org / argeo / slc / core / test / tree / PartSubList.java
index 34ef96a4ee6a6379e8ad21d372b9493573b8b143..113ef48bbfd9a08d087dfd27851a35e6b2a34acd 100644 (file)
@@ -5,17 +5,27 @@ import java.util.Vector;
 \r
 import org.argeo.slc.core.test.TestResultPart;\r
 \r
+/**\r
+ * List of <code>TestResultPart</code>. It can be used to build complex\r
+ * <code>TestResult</code> affording the possibility to a\r
+ * <code>TestDefinition</code> to add a list of result part under the same\r
+ * <code>StructurePath</code>.\r
+ * \r
+ * @see TreeTestResult\r
+ */\r
 public class PartSubList {\r
-       \r
+\r
        /** For ORM */\r
        private Long tid;\r
 \r
        private List<TestResultPart> parts = new Vector<TestResultPart>();\r
 \r
+       /** Gets the result parts. */\r
        public List<TestResultPart> getParts() {\r
                return parts;\r
        }\r
 \r
+       /** Sets the result parts. */\r
        public void setParts(List<TestResultPart> parts) {\r
                this.parts = parts;\r
        }\r
@@ -28,5 +38,4 @@ public class PartSubList {
                this.tid = tid;\r
        }\r
 \r
-       \r
 }\r