Came across code recently in Wicket like so:
Form<?> form = new Form<Void>("form")
Can anyone explain the usage of the Void type here? First time I've seen that type being used actually. Is it used t all outside of Wicket?
|
feedback
|
|
Yes, it's used outside of Wicket. For example, when a method takes a In this particular case, according to the documentation, it's used to indicate that the Form doesn't have any model object. The only valid value of the Void type is | |||
|
feedback
|
|
| |||
|
feedback
|