1 15 package hivemind.test.rules.impl; 16 17 import java.util.List ; 18 19 import hivemind.test.rules.DatumHolder; 20 21 26 public class DatumHolderImpl implements DatumHolder 27 { 28 public List _elements; 29 30 public List getDatums() 31 { 32 return getElements(); 33 } 34 35 public List getElements() 36 { 37 return _elements; 38 } 39 40 public void setElements(List list) 41 { 42 _elements = list; 43 } 44 45 } 46 | Popular Tags |