Class: ConboClass

conbo.ConboClass(options)

new ConboClass(options)

Conbo class Base class for most Conbo framework classes that calls preinitialize before the constructor and initialize afterwards, populating the options parameter with an empty Object if no parameter is passed and automatically making all properties bindable.
Parameters:
Name Type Description
options Object Class configuration object
Author:
  • Neil Rackett
Source:

Extends

Members

supro

Similar to `super` in ActionScript or Java, this property enables you to access properties and methods of the super class prototype, which is the case of JavaScript is the next prototype up the chain
Inherited From:
Source:

Methods

bindAll(…methodNameopt) → {this}

Scope all methods of this class instance to this class instance
Parameters:
Name Type Attributes Description
methodName string <optional>
<repeatable>
Specific method names to bind (all will be bound if none specified)
Inherited From:
Source:
Returns:
Type
this

constructor(optionsopt)

Constructor: DO NOT override! (Use initialize instead)
Parameters:
Name Type Attributes Description
options Object | conbo.Context <optional>
Options object
Source:

declarations() → {void}

Declarations is used to declare instance properties used by this class
Parameters:
Type Attributes Description
* <repeatable>
Inherited From:
Source:
Returns:
Type
void

destroy() → {void}

Clean everything up ready for garbage collection (you should override in your own classes)
Inherited From:
Source:
Returns:
Type
void

initialize() → {void}

Initialize (entry point) is called immediately after the constructor has completed
Parameters:
Type Attributes Description
* <repeatable>
Inherited From:
Source:
Returns:
Type
void

preinitialize() → {void}

Preinitialize is called before any code in the constructor has been run
Parameters:
Type Attributes Description
* <repeatable>
Inherited From:
Source:
Returns:
Type
void

toString() → {string}

String representation of the current class
Overrides:
Source:
Returns:
Type
string