View · Search · Index
No registered users in community xowiki
in last 10 minutes

Re: [Xotcl] Initialisation arguments

From: Kristoffer Lawson <setok_at_fishpool.com>
Date: Tue, 24 Oct 2006 11:54:54 +0300

> configure gets all arguments, including the values passed to init.
> Use the one-liner of my last mail, and you
> will see that this works for your example as well. if you pass the
> saved values to object creation, you achieve
> both, configuring the attributes and calling the constuctor with
> the saved values.

OK, thanks, this is working for me at the moment.

> mixins are in no way more "risky" than a filter or overloading
> "create". The mixins are in the precedence order
> before the intrinsic class tree. So, it does not matter whether or
> not someone has overloaded in the intrinsic
> class tree "configure", and/or forgotten to write a next there.

Yup, I got confused about the calling order, thinking that mixins are
called after the other inheritance chain.