Hi - I am looking at 1.4m2 codebase. One of the constructors of radio choice seem to be:
public RadioChoice(final String id, final List<T> choices) .. In reality the second argument seems to be more appropriate for a Collection , rather than as a list. Any specific reason why it is List<?> instead of being a Collection<?> . The argument being a collection can enable it to take Set<?>s. that seems more appropriate here. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
