|
Re: Lazy Events
|
Posted: Nov 19, 2003 11:04 PM
|
|
I know Jack about Java GUI. But I think this might be related to. (Something I copied off the web)
Lazy Initialization -------------------
Delay the creation of an object or other expensive action needed to initialize a variable until it is known that the variable will be used. Related patterns are
Maximize Privacy The Maximize Privacy pattern provides a justification for making a lazily initialized variable private. Virtual Proxy Like the Lazy Initialization pattern, the Virtual Proxy pattern can be used to delay a computation or the creation of an object until it is actually needed. The difference is that the Virtual Proxy pattern uses a proxy object to hide the computation; the Lazy Initialization pattern uses a method to hide the computation.
|
|