> yep, calling overridable methods from constructors is bad - you just
> made the case for making page.oninitialize() final...
No, I've made the case for this issue. Either add() should be disallowed from
the constructor (meaning onInitialize won't get called from it), onInitialize
should be made final (meaning onInitialize will do nothing when it gets
called), or Page should stop calling initialize() as a result of a component
being added, and behave like any other component does. Would you mind
addressing this third option? What exactly is the reason for Page behaving in
this special way?
On 09 Mar 2011, at 09:15, Igor Vaynberg wrote:
>
>> Firstly, it's my opinion that you really shouldn't be doing anything to
>> components directly, especially not from outside your class. As for why,
>> see Encapsulation and Law of Demeter.
>
> neither of the two apply because nameeditor explicitly exposes the two
> components as part of its contract via public getters.
Allow me to remind you:
> More formally, the Law of Demeter for functions requires that a method M of
> an object O may only invoke the methods of the following kinds of objects:
>
> • O itself
> • M's parameters
> • any objects created/instantiated within M
> • O's direct component objects
> • a global variable, accessible by O, in the scope of M
Making your components available via getters does not excuse anything. The
list does not include "invoke methods on any objects created by any objects
created within M", for good reason.
>> Also, I really don't like condoning get(String), it's nasty and very
>> type-unfriendly. It also breaks as soon as you do any refactoring in your
>> component hierarchy.
>
> yes, i traded off some refactorability for better memory footprint.
> imho a perfectly valid trade off when memory and space are costly.
> there are still problems with this:
> *you still have the two extra memory slots that are a complete waste
> here - component references
You're talking about the cost of a reference to a component. It's not like
you've got a COPY of the component in your field. And no, it's not a good
trade-off. You're writing Java applications, you'll be deploying in Java
application containers, you're working with a web framework that goes to great
lengths to help the container provide solid clustering. Your memory footprint
is absolutely subordinate to decently maintainable and compile-time checked
code. If you're a developer that doesn't appreciate the latter, you'll find
that you can be a lot more flexible using a language with weak type checking,
at the cost of maintainable code. Any Java developer should not be willing to
make this trade-off, especially when it's as light as this one. Your component
gets added to your page anyway!
> *the lazy init code is cumbersome to write
Hardly, but you shouldn't be doing it anyway except for special cases where you
can forgive yourself the bad design.
> *you are missing the two slots needed to pass models from constructor
> to the two textfields - so thats four extra slots total that you have
> now forced on users
You really shouldn't be having references to your components and have only two
slots for your models, but if you want to provide getters for your components,
yes, you need instance fields for them. Because get(String) is nasty. This
really doesn't have anything to do with the difference between constructor and
onInitialize initialization, except for the added bonus that you can't do nasty
get(String) in the latter case before your component is initialized. The
second option is looking better and better to me.
> * the components i get from the getters are not added to their parent
> - for more complex components that need access to their markup this is
> a problem, eg if
> ("text".equals(getFirst().getMarkupTag().get("type")).......not
> necessarily a good example taking this particular custom component as
> context, but a valid usecase in plenty of other situations.
Irrelevant, even if you added them in your constructor, you don't have access
to your markup before you add your newly created NameEditor to a page
hierarchy. This example does help to confirm the need for an onInitialize:
Don't touch your components until onInitialize is called indicating that the
page hierarchy and markup are available.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]