[ 
https://issues.apache.org/jira/browse/WICKET-4906?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13510527#comment-13510527
 ] 

Andrea Del Bene commented on WICKET-4906:
-----------------------------------------

We could use reflection to extract the actual component type from IVisitor 
interface and pass it to method visitChildren (see method visitFormComponents 
in Form.java).
                
> Form#visitFormComponents can cause ClassCastException
> -----------------------------------------------------
>
>                 Key: WICKET-4906
>                 URL: https://issues.apache.org/jira/browse/WICKET-4906
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 6.3.0
>            Reporter: Jesse Bonzo
>            Priority: Minor
>              Labels: form, visit, wicket
>         Attachments: WicketQuickStart.zip
>
>
> The current method signature of Form#visitComponents allows for passing in an 
> implementation of IVisitor that will cause a ClassCastException. 
> Example
> Add a CheckBox and TextField to the Form. Pass in an IVisitor<CheckBox> to 
> visitComponents. There will be a ClassCastException when the 
> IVisitor<CheckBox> attempts to visit the TextField.
> The method signature should be changed to
> public final <R> R visitFormComponents(final IVisitor<FormComponent<?>, R> 
> visitor)
> or the method should be removed to prevent confusion.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to