]> 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
@update:79; INtroduce event polling (not working yet)
[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 import org.argeo.slc.msg.ObjectList;
7
8 /**
9 * List of results. Used for marshaling.
10 *
11 * @deprecated Should be replaced by a standard {@link ObjectList}.
12 */
13 public class TreeTestResultList {
14 private List<TreeTestResult> list = new ArrayList<TreeTestResult>();
15
16 public TreeTestResultList() {
17 super();
18 }
19
20 public TreeTestResultList(List<TreeTestResult> list) {
21 super();
22 this.list = list;
23 }
24
25 public List<TreeTestResult> getList() {
26 return list;
27 }
28
29 public void setList(List<TreeTestResult> list) {
30 this.list = list;
31 }
32
33 }