Now that we’ve got our base class defined, we can access its functionality by creating another class which implements it. Note in the example below that our new class isn’t doing anything but implementing BaseClass.
//Build a class called ImplementingClass
var ImplementingClass = new Class({
//All we do is implement Baseclass
Implements : BaseClass
});
Now we can create an instance [...]