The ComponentInterceptor, in the before(ActionInvication)
method, it calls initializeComponent(Object) passing the ation. Why
is this call there, shouldn't it be a call to
setupComponent(Object)
I thought
the 'operation' of the ComponentManager operations
are:
initializeComponent(Object
component)
store the component so
that it can be 'given' to its aware
objects
setupComponent(Object
component)
'give' any components that are
registeded (through initializeComponent) to the specified component
argument.
Shouldn't the component argument to
this method really be named something different, like object
?