#Atomix, JS inheritance and class emulation.
Example for standard class declaration.
The Atomix
, mx
, and declare
classes are interchangable for the most part.
The declare tool limits functionality to the main business of creating classes,
by mostly aliasing the built in methods baked into the Atomix class. mx
is
simply the shorthand form of Atomix
.
/* Create a class. */
var Hello,
hello;
Atomix
.ns('Salutations')
.class('Hello')
.inherits(Proton)
.implements(function(p){
this.init = function(p){
this.run(p);
};
this.run = function(p){
document.write(p + "</br>");
};
}
);
/* Here is another way to do the same thing */
declare.class('Salutations.Hello', function(p)
{
this.init = function(p){
this.run(p);
};
this.run = function(p){
document.write(p + "</br>");
};
}
);
Hello = Atomix.import('Hello');
hello = new Hello('Hello world.');
Examples for singleton class declaration.
Singletons can be created by invoking the 'singleton' method in Atomix or declare. They can also be created by inheriting from the singleton object or the Singleton constructor.
/* Create a singleton class. */
var Singularity,
s1,
s2;
Atomix.new
.singleton('Singularity', function(){
this.test = "Hello universe.";
this.init = function(){this.run();};
this.run = function(){document.write(this.test + "</br>");};
});
Singularity = Atomix.import('Singularity');
s1 = new Singularity();
s2 = new Singularity();
console.log('singleton:', s1===s2); // true
/* Create a singleton class that inherits from another class. */
var Yo,
yo,
yo2,
Hola,
hola1
hola2;
declare.namespace('Salutations')
.singleton('Yo')
.inherits(Hello);
Yo = mx.import('Salutations.lib.Yo');
yo = new Yo('Yo yo yo.');
yo2 = new Yo();
console.log('singleton:', yo===yo2); // true
/* Create a singleton by inheritance */
declare
.ns('Salutations')
.class('Hola')
.inherits(Singleton)
.implements(Hello);
mx.from('Salutations').import('Hola').as('Hola');
hola1 = new Hola('Hola mundo');
hola2 = new Hola();
console.log('singleton:', hola1===hola2); // true
Example for static class declaration
Static classes can be declared by calling the 'static' method. By making a class static, creating new instances of the class will result in an exception being thrown.
/* Create a static class
* declare class Hi that inherits from Hello with init value 'Hi Ho!'
*/
var Hi,
fail;
Hi = declare.static('Hi', Hello, 'Hi Ho!'); // 'Hi Ho!'
Hi('Hi Ho! Off to work we go!');
/* Attempt to create an instance of a static class.
* The exception : "New instances of static classes may not be constructed."
* will be thrown.
*/
fail = new Hi("Fail."); // Exception thrown.
Example for namespace declaration
Namespaces can be declared by using the namespace method.
/* Create a namespace and then declare new classes in that namespace */
var space,
class1,
class2;
space = declare.namespace('Space.lib');
class1 = space.class('Class1');
class2 = space.singleton("Class2");
Examples for importing classes
The 'Atomix' and 'port' classes can both be used for importing and exporting classes. The 'port' class adds some exta functionality aside from importing and exporting, such as packaging classes.
/**
* The following statements all import the same calss and
* assign it to the variable 'H' within the current scope.
*/
var H,
s;
/* standard usage */
H = mx.import('Hola');
H = mx.import('Salutations.Hola');
H = mx.import('Salutations.lib.Hola');
/* using 'from' and 'as' */
mx.from('Salutations').import('Hola').as('H');
/* using 'import' and 'as' */
mx.import('Salutations.Hola').as('H');
/* using 'import' and 'as' with namespaces */
mx.import('Salutations').as('s');
s.import('Hola').as('H');
/* standard usage with the 'port' static class */
H = port.in('Salutations.Hola');
/* imports statements can be chained for readability. */
Atomix
.from('Space') .import('Class1') .as('c3')
.from('Space') .import('Class2') .as('c4')
.import('Hello') .as('h1');
port
.from('Salutations') .in('Hola') .as('H1')
.from('Salutations') .in('Yo') .as('Space.Class3'); // assigned to global.Space.Class3
.from('Salutations') .in('Yo') .as('.Space.Class3'); // assigned to local_scope.Space.Class3