String cause = (String) causeList.nextValue();
Object[] parameters = (Object[]) parameterList.nextValue();
if (method == null || cause == null || parameters == null)
{
throw new ActivityUserException(
new UnmatchedInputException(
new String[] {
INPUT_COLUMNS,
INPUT_METHODS,
INPUT_CAUSE,
INPUT_PARAMETERS },
new Object[] {
column, method, cause, parameters }));
}
DPPMethodForColumn methodForColumn = loadMethod(
column.intValue(),
method,
cause,
parameters,
pmml.getPMML());
mColumnMethods.put(column, methodForColumn);
}
if (methodsList.nextValue() != null
|| causeList.nextValue() != null
|| parameterList.nextValue() != null)
{
throw new ActivityUserException(
new UnmatchedInputException(
new String[] {
INPUT_COLUMNS,
INPUT_METHODS,
INPUT_CAUSE,