public void translateToMap() { if (noOpIn != null) { Map mapList = new HashMap(); Map[] mapArray = null; mapList.put("Count", noOpIn.getLength()); mapList.put("TotalCount", noOpIn.getTotalCount()); mapList.put("Index", noOpIn.getIndex()); mapArray = new HashMap[noOpIn.getLength()]; for (int i = 0; i < noOpIn.getLength(); i++) { noOpIn.getArray()[i].resetFlags(true, true); mapArray[i] = InvJobObjectHelper.toMap(noOpIn.getArray()[i], null); addInput("InvJob", noOpIn); } addInput("InvJob", mapList); } }
public void translateFromMap() { noOpIn = InvJobObjectHelper.fromMapList(inputMap, "InvJobList"); }