You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Manuel Manhart (JIRA)" <ji...@apache.org> on 2009/02/26 11:37:01 UTC

[jira] Created: (WICKET-2129) DateTextField does not implement Generics

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.


[jira] Resolved: (WICKET-2129) DateTextField does not implement Generics

Posted by "Igor Vaynberg (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Vaynberg resolved WICKET-2129.
-----------------------------------

    Resolution: Fixed
      Assignee: Igor Vaynberg

looks like its already fixed in latest trunk

> 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
>            Assignee: Igor Vaynberg
>            Priority: Trivial
>   Original Estimate: 0.02h
>  Remaining Estimate: 0.02h
>
> 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.