/**
* Listener
* TODO: move into Subject and rename Subject to Notification? / jonas
*/

function Listener(name) {
    this.name = name;	
}
  
Listener.prototype.notify = function(object) {
  	//this.render(object);
};

