///////////////////////////////////////////////////////////////////////////////// // Copyright © 2008 W. Kowarschick // // Permission is granted to copy, distribute and/or modify this document // under the terms of the WK License, Version 1.0 (WKL 1.0) or any later version // published by Wolfgang Kowarschick. ///////////////////////////////////////////////////////////////////////////////// package service { import flash.events.IEventDispatcher; [Event (name="complete", type="flash.events.Event")] public interface IService extends IEventDispatcher { ///////////////////////////////////////////////////////////////////////////// // Public ///////////////////////////////////////////////////////////////////////////// function execute(): void; ///////////////////////////////////////////////////////////////////////////// // End of Class ///////////////////////////////////////////////////////////////////////////// } }