var Class = {
   create: function() {
     return function(e1, e2, e3, e4) {
       if (this.initialize) {
         this.initialize(e1, e2, e3, e4);
       }
     }
   }
 }  