Larry Sherrill <larrypsherrill <at> yahoo.com> writes:

> 1. How does the render method get access to the
> component it needs to valid to validate?

something like:

class Home {
  IDelegate getMyDelegate() {
     return new MyDelegate(this);
  }
}

class MyDelegate ... {
  MyDelegate(IPage page) {
    //you can get the component from the page later.
  }
}

> 2. If I am in rewind then how does the *** ever get
> printed in case of error since output is swallowed.

In the rendering phase, the ValidationDelegate will note that 
that PropertySelection component is in error, then it will 
output the stars.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to