Function Namespace Class
- Defined in: Class.js
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
Class()
|
Method Summary
| Method Attributes | Method Name and Description |
|---|---|
| <static> |
Class.extend(protoProps, staticProps, mixins)
Class derivation.
|
Function Namespace Detail
Class()
Method Detail
-
<static> Class.extend(protoProps, staticProps, mixins)Class derivation.
- Parameters:
- protoProps
- object containing attributes and methods to be added to the derived class's instance interface.
- staticProps
- object containing attributes and methods to be added to the derived class's static interface.
- mixins
- array containing Objects whose prototypes should be mixed into the derived class. Mixing in happens sequentially, such that a property of one mixin will be overridden if a later mixin contains a property of the same name.