DateTextField does not implement Generics
-----------------------------------------
Key: WICKET-2129
URL: https://issues.apache.org/jira/browse/WICKET-2129
Project: Wicket
Issue Type: Bug
Components: wicket-extensions
Affects Versions: 1.4-RC1
Environment: -
Reporter: Manuel Manhart
Priority: Trivial
The class DateTextField does not implement gernerics correct.
The Classdef is:
public class DateTextField extends TextField implements ITextFormatProvider {
but should be
public class DateTextField extends TextField<Date> implements
ITextFormatProvider {
The compiler shows a generics warning when adding a DateValidator to the field
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.