AJAX.OOP
From Wikipedia, the free encyclopedia
|
|
The topic of this article may not meet Wikipedia's general notability guideline. Please help to establish notability by adding reliable, secondary sources about the topic. If notability cannot be established, the article is likely to be merged, redirected, or deleted. (November 2009) |
| This article relies on references to primary sources or sources affiliated with the subject, rather than references from independent authors and third-party publications. Please add citations from reliable sources. (November 2009) |
AJAX.OOP is an open source JavaScript framework distributed under MIT License. Providing with OOP-style coding engine and AJAX requests handling functionality to create web 2.0 components. Due to OOP paradigm AJAX.OOP library can be easily extended with additional functionality or used as core for other projects.
[edit] The JavaScript OOP library
AJAX.OOP is a fast and scalable JavaScript library for creating JavaScript/AJAX components in an object-oriented way.
Main feature - strong OOP paradigm implementation.AJAX.OOP engine allows the programmer to:
- Create classes with object-like defining syntax
- Inherit classes (both AJAX.OOP-style defined and created with native JavaScript code)
- Aggregate classes (including aggregation of self and parent class with special operators this.$_self and this.$_super)
- Define constructors as they are (name = 'constructor')
- Override parent class properties and methods (but call parent if you need by using special access operator this.$super)
- Access/call any parent properties and/or methods from any method of child class (just use this.$super accessor whenever you need to access parent properties and methods)
- Use strict defined objects with workable 'instanceof' operator on them when instantiating an exemplar of AJAX.OOP classes