Description
Instance class
The root of the Class tree. All LZX instances are
instanceof Instance.
Details
Static Properties (1)
-
classname
-
static private var classname = Instance;
Static Methods (2)
-
initialize()
-
static private function initialize(prototype);
Class initialize method
Called by Class.make each time a class or subclass is made.
Argument is the prototype of the class. The class initializer
allows the class to initialize prototype properties with
non-constant values.
Class initializers are invoked from least to most specific,
automatically by the Class.make method. They cannot be overridden.
Default method does nothing
-
make()
-
static private function make();
Default Instance factory
Make a new instance of a class.
Prototype Properties (3)
-
classname
-
private var classname = Object;
-
constructor
-
-
__initialized
-
private var __initialized = false;
JavaScript Synopsis
private function Instance();