I've always been a fan of Rocky Lhotka's approach in the [CSLA framework][1] (as mentioned by Charles).  In general, whether it's driven by the setter or by calling an explicit Validate method, a collection of BrokenRule objects is maintained internally by the business object.  The UI simply needs to check an IsValid method on the object, which in turn checks the number of BrokenRules, and handle it appropriately.  Alternatively, you could easily have the Validate method raise an event which the UI could handle (probably the cleaner approach).  You can also use the list of BrokenRules to display error messages to the use either in summary form or next to the appropriate field.  Although the CSLA framework is written in .NET, the overall approach can be used in any language.

By the way, I have never liked the idea of not letting the user leave a field when it is in an invalid state.  There are so many situations where you might need to leave the field temporarily (perhaps to set some other field first) before going back and fixing the invalid field.  I think it's just an unnecessary inconvenience.


  [1]: http://www.lhotka.net/cslanet/