RefreshingView

2009-09-27 Thread Garz
heyho, public abstract class RefreshingViewT extends RepeatingView has the typeparameter but no public IModelT getModel(). can someone add it please or let me add it, i would do it too, plus setModel(), setModelObject(), getModelObject(). regarz -- Neu: GMX Doppel-FLAT mit Internet-Flatrate

Re: RefreshingView

2009-09-27 Thread garz
ah noo i am wrong, the type parameter is for the items that are used inside, not for the model of the refreshingview itself. my fault, sry. :D though but your answer didnt help me to find that out... ;) MartinM wrote: It has getDefaultModelObject etc?? ** Martin 2009/9/27

Re: 2 new models for wicket

2009-09-26 Thread garz
getModel(). i would do these changes. tell me your opinion. regards garz ps: here are the sources of the two models: public class InheritedPropertyModelT        implements IComponentInheritedModelT, IComponentAssignedModelT {        private String property;        public

2 new models for wicket

2009-09-25 Thread Garz
there isnt any. since i'm willing to contribute those two models, i propose to change something in the wickets component-code. give me a hasModel(). or give me a public getModel(). i would do these changes. tell me your opinion. regards garz ps: here are the sources of the two models: public class

IComponentAssignedModel and ComponentModel

2009-09-24 Thread Garz
class and assign the component to it in wrapOnAssignment(Component component)? why an inner class? and how i'm supposed to use ComponentModel as a base class when i cant subclass the innerclass because its private and therefor not visible? thanks in advance, garz -- Jetzt kostenlos

IComponentAssignedModel and ComponentModel

2009-09-24 Thread Garz
class and assign the component to it in wrapOnAssignment(Component component)? why an inner class? and how i'm supposed to use ComponentModel as a base class when i cant subclass the innerclass because its private and therefor not visible? thanks in advance, garz -- Jetzt kostenlos

IComponentAssignedModel and ComponentModel

2009-09-24 Thread Garz
class and assign the component to it in wrapOnAssignment(Component component)? why an inner class? thanks in advance, garz (just want to learn) -- Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3.5 - sicherer, schneller und einfacher! http://portal.gmx.net/de/go/chbrowser

IComponentAssignedModel and ComponentModel

2009-09-24 Thread Garz
class and assign the component to it in wrapOnAssignment(Component component)? why an inner class? thanks in advance, garz (just want to learn) -- Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3.5 - sicherer, schneller und einfacher! http://portal.gmx.net/de/go/chbrowser

IComponentAssignedModel and ComponentModel

2009-09-24 Thread garz
on the outer class and assign the component to it in wrapOnAssignment(Component component)? why an inner class? thanks in advance, garz (just want to learn) - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: IComponentAssignedModel and ComponentModel

2009-09-24 Thread garz
ok, this is kind of embarassing. i subscribed to the list, but i didnt get any feedback if it was successful. i post a message to the mailinglist, no feedback again. i look in nabble, my mail isnt there. what am i supposed to think? so i subscribed again and again with little differences and

Re: Panel not using generics

2009-09-09 Thread garz
i want the getModelObject() (which is in fact the getDefaultModelObject()) to return the actual type that i dont need to do unchecked casts. i'm just wondering, now that everything uses generics, why does the panel do not use generics? just want to understand the reason behind this. regards garz