i thought the component is the view.
no, the component is the mvc not just the view. it handles its own events and responds to them.
hmmm,
class Component {
....
protected IController getController() {
return new TrivialController(this, this.getModel());
}
}
yes, but what would the IController look like? it would have the same two getObject/setObject that the IModel has? so whats the point?
-Igor
