]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/test/tree/TreeTestResultList.java
Introduce a factory bean to use execution resources
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / test / tree / TreeTestResultList.java
1 package org.argeo.slc.core.test.tree;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 /** List of results. Used for marshaling. */
7 public class TreeTestResultList {
8 private List<TreeTestResult> list = new ArrayList<TreeTestResult>();
9
10 public TreeTestResultList() {
11 super();
12 }
13
14 public TreeTestResultList(List<TreeTestResult> list) {
15 super();
16 this.list = list;
17 }
18
19 public List<TreeTestResult> getList() {
20 return list;
21 }
22
23 public void setList(List<TreeTestResult> list) {
24 this.list = list;
25 }
26
27 }