Sha256: 19de6c391f9411c0cac862672c2427ecbbf61cf108f37c7789606fb81c845efe
Contents?: true
Size: 642 Bytes
Versions: 4
Compression:
Stored size: 642 Bytes
Contents
package org.rsos.openbill.control { import com.adobe.cairngorm.control.FrontController; import org.rsos.openbill.command.*; import org.rsos.openbill.event.*; public class OpenbillController extends FrontController { public function OpenbillController() { initialiseCommands(); } public function initialiseCommands() : void { addCommand( LoginEvent.EVENT_LOGIN, LoginCommand ); addCommand( LogoutEvent.EVENT_LOGOUT, LogoutCommand ); addCommand( FpEvent.EVENT_FP, FpCommand ); addCommand( SettingEvent.EVENT_SETTING, SettingCommand ); addCommand( ProductEvent.EVENT_PRODUCT, ProductCommand ); } } }
Version data entries
4 entries across 4 versions & 2 rubygems