actionSource.addActionListener(new ResetFormActionListener());
} else if (execute.isLiteral()) {
actionSource.addActionListener(new ResetInputActionListener(ComponentUtils.splitList(execute.getValue())));
} else {
final ValueExpression forValueExpression = execute.getValueExpression(faceletContext, String.class);
actionSource.addActionListener(new ValueExpressionResetInputActionListener(forValueExpression));
}
}
} else {
throw new TagException(tag, "Parent is not of type ActionSource, type is: " + parent);
}