()
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public List<DataValue> getData() throws Exception |
| 43 | { |
| 44 | retList.clear(); |
| 45 | |
| 46 | for (String key : this) |
| 47 | { |
| 48 | DataElement ele = allVars.getDataElement(key); |
| 49 | retList.addAll(ele.getData()); |
| 50 | } |
| 51 | |
| 52 | return retList; |
| 53 | } |
| 54 | |
| 55 | public void setId(String id) |
| 56 | { |
no test coverage detected