Learn how to structure individual pieces of your application into class files. Many newbies put too much functionality into a few classes, making the application difficult to maintain and overview. Learn the ways of composition.



workline

The composite pattern is a powerful design pattern helping organizing your data into tree structures. The information is represented in tree branches and tree leafs, just like a regular tree. Both branches and leafs are referred to as nodes.



workline

One of the most fundamental rules of object oriented programming is the principle of encapsulation.
The basic principle of encapsulation is to prevent a class’s inner workings from being exposed to outside classes.



workline

Tired of repeating the same syntax for DisplayObjects? Tired of writing Event.ADDED_TO_STAGE and Event.REMOVED_FROM_STAGE and Event.RESIZE? Then take a look the AbstractDisplayObject class.



workline