Though I haven't done much work with 1.4, I think DDC and LV need to
have the same generics semantics. And I prefer the simple version.

So count my +1.

Martijn

On Tue, Mar 3, 2009 at 9:33 PM, Timo Rantalaiho <timo.rantala...@ri.fi> wrote:
> On Mon, 02 Mar 2009, Johan Compagner wrote:
>> If we loose the wildcard is it then still possible to do everything?
>>
>> We have it to be able to use a <Manager> List when we declare it as a
>> <People>
>> When you have that you have to copy it over i guess by a helper method.
>>
>> I just want to know for sure that i dont miss something that if we remove it
>> that then something is not possible anymore
>
> Right, for example this does not work
>
>  List<Serializable> doesntWork = new ArrayList<String>(Arrays.asList("foo", 
> "bar"));
>
> But this does
>
>  List<Serializable> works = new ArrayList<Serializable>(Arrays.asList("foo", 
> "bar"));
>
> As Igor says, this might not be a very common scenario(?).
>
> The case that has come up a couple of times in the last few
> days is that the same model didn't work for DropDownChoice
> and ListView. This seems like a more likely case so it would
> make sense to align them with each other. So far there have
> only been a couple of -1s, so maybe that will happen.
>
> Best wishes,
> Timo
>
> --
> Timo Rantalaiho
> Reaktor Innovations Oy    <URL: http://www.ri.fi/ >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.3.5 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to