OO in Ext
Before we begin...
- Ext is an object-oriented framework (within the confines of JavaScript)
- Classes encapsulate behavior
- Classes can also be extended (inherited from) and overridden
- Ext uses many standard OO design patterns:
- Observable
- Flyweight
- Singleton
- Composite
These concepts will be explored further as we move forward.