
Dynamic Layout Markup Language
See also Site Map
Prototype factory:
MyPrototype=Prototype({$constructor:function(){},$shared:{},$extends:Prototype});
then... myObject = new MyPrototype(...);
parameters:
$extends (optional) augments object and prototype content,
$implements: [] (optional) copies properties of Prototypes to new Prototype
(to be implemented)
$constructor (optional) becomes constructor,
$shared (optional) becomes constructor.prototype content,
Prototype is a javascript closure when used with $extends.