AS3 :: Builder Pattern
Saturday, July 29th, 2006Hello,
I have had some real fun with this pattern in AS3.
The build pattern I use has the elements;
- Client that wants a built product
- Client that controls when the product of the builder is created
- A builder that has one public method and one public property respectivly
- build()
- builtObject
The Builder [...]

