You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Igor Vaynberg (JIRA)" <ji...@apache.org> on 2007/09/21 02:32:50 UTC

[jira] Closed: (WICKET-960) FilteredAbstractColumn unary constructor expects Model instead of IModel

     [ https://issues.apache.org/jira/browse/WICKET-960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Vaynberg closed WICKET-960.
--------------------------------


> FilteredAbstractColumn unary constructor expects Model instead of IModel
> ------------------------------------------------------------------------
>
>                 Key: WICKET-960
>                 URL: https://issues.apache.org/jira/browse/WICKET-960
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.2.6
>            Reporter: Gabor Szokoli
>            Assignee: Igor Vaynberg
>            Priority: Trivial
>             Fix For: 1.3.0-beta4
>
>
> We have this now:
> public FilteredAbstractColumn(Model displayModel)
> 	{
> 		super(displayModel);
> 	}
> Here's the super constructor it delegates to:
> public AbstractColumn(IModel displayModel)
> 	{
> 		this(displayModel, null);
> 	}
> So I really don't see why the FilteredAbstractColumn would need Model descendants specifically.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.