package org.argeo.slc.ant; import java.util.List; import java.util.Map; import java.util.TreeMap; import java.util.Vector; public class DummyObject { private String name; private Long value; private DummyObject other; private List children = new Vector(); private Map map = new TreeMap(); public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getValue() { return value; } public void setValue(Long value) { this.value = value; } public DummyObject getOther() { return other; } public void setOther(DummyObject other) { this.other = other; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } public Map getMap() { return map; } public void setMap(Map map) { this.map = map; } }