Initializes the object.
All AW objects have an empty constructor. The constructor just calls init() method passing its arguments, which makes init() method equivalent to the constructor.
nullobj.init = function(){
// ...
};
init method receives the parameters passed to the constructor
obj.init = function(content){
_super.init.call(this); // initialize superclass
this.setContent("html", content);
};