function StarDelegate(){
var _1=null;
var _2=null;
var _3=null;
this.pushAction=function(_4,_5,_6){
_1=_4;
_2=_5;
_3=_6;
};
this.popAction=function(){
if(!_1){
return;
}
_1.apply(_1,_2);
clear();
};
this.cancelAction=function(){
if(_3){
_3.cancel();
}
clear();
};
function clear(){
_1=null;
_2=null;
_3=null;
}
}

