Revision: 7626
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 1, 2008 12:56 by t3flexdev
Initial Code
###LICENSE###
/***************************************************************
* ###DATE###
* ###USER:realName###
***************************************************************/
package ###PACKAGE### {
import ###BUSINESS###.*;
import ###CONTROL###.*;
import ###VO###.*;
import ###MODEL###.AppModelLocator;
import com.adobe.cairngorm.commands.Command;
import com.adobe.cairngorm.control.CairngormEvent;
import com.adobe.cairngorm.control.CairngormEventDispatcher;
import mx.collections.ArrayCollection;
import mx.rpc.IResponder;
public class ###CLASSFILENAME### implements Command, IResponder {
private var model : AppModelLocator = AppModelLocator.getInstance();
public function execute( cgEvent:CairngormEvent ) : void {
var delegate : ###CLASSDELEGATE### = new ###CLASSDELEGATE###(this);
delegate.###CLASSDELEGATESERVICE###();
}
public function result( rpcEvent : Object ) : void {
// model.listDP = new ArrayCollection(rpcEvent.result);
}
public function fault( rpcEvent : Object ) : void {
// model.errorStatus = "Fault occured in ###CLASSFILENAME###.";
}
}
}
Initial URL
Initial Description
Initial Title
[rpcDelegatedCommand]
Initial Tags
Initial Language
ActionScript 3