public void wdDoInit() { //@@begin wdDoInit() IInputDataElement firstEl = wdContext.nodeInputData().createAndAddInputDataElement(); firstEl.setByteValue((byte)96); firstEl.setDateValue(new Date(System.currentTimeMillis())); firstEl.setDecimalValue(new BigDecimal(1234.56)); firstEl.setDoubleValue(9876.54321); firstEl.setFloatValue((float)13579.2468); firstEl.setIntegerValue(12345); firstEl.setLongValue((long)24680); firstEl.setShortValue((short)13579); firstEl.setStringValue("Blah de blah"); firstEl.setTimestampValue(new Timestamp(System.currentTimeMillis())); firstEl.setTimeValue(new Time(System.currentTimeMillis())); IInputDataElement secondEl = wdContext.nodeInputData().createAndAddInputDataElement(); secondEl.setByteValue((byte)66); secondEl.setDateValue(new Date(System.currentTimeMillis())); secondEl.setDecimalValue(new BigDecimal(97531.08642)); secondEl.setDoubleValue(12345.6789); secondEl.setFloatValue((float)24680.13579); secondEl.setIntegerValue(546372); secondEl.setLongValue((long)827152); secondEl.setShortValue((short)4362); secondEl.setStringValue("Nothing to see here, move along..."); secondEl.setTimestampValue(new Timestamp(System.currentTimeMillis())); secondEl.setTimeValue(new Time(System.currentTimeMillis())); //@@end }