[flexcoders] Re: Singletons - Best Practices

2008-03-11 Thread andrii_olefirenko
i don't know about best practices but it's quite easy to implement package test { import flash.utils.Dictionary; public class SingletonManager { private static const instances:Dictionary = new Dictionary; public

Re: [flexcoders] Re: Singletons - Best Practices

2008-03-11 Thread Mike Chabot
There is a chapter in the ActionScript 3 Design Patterns book on this topic that is good. -Mike Chabot On Tue, Mar 11, 2008 at 11:06 PM, andrii_olefirenko [EMAIL PROTECTED] wrote: i don't know about best practices but it's quite easy to implement package test { import