///////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010-2011 Wolfgang Kowarschick // // Dieses Werk darf unter den Bedingungen der Creative Common Lizenz by-nc 3.0 de // (http://creativecommons.org/licenses/by-nc/3.0/de/) // vervielfaeltigt, verbreitet, publiziert und modifiziert werden. ///////////////////////////////////////////////////////////////////////////////// package as3.component.board.service { import as3.component.board.data.I_DataBoard; import as3.component.level.data.I_DataLevel; import as3.enumeration.I_ExtentEnum; public interface I_ServiceBoard { ///////////////////////////////////////////////////////////////////////////// // Methods ///////////////////////////////////////////////////////////////////////////// function set dataBoard(p_data: I_DataBoard): void; function set dataLevel(p_data: I_DataLevel): void; function set extent(p_extent: I_ExtentEnum): void; /** * Load the xml data to initialize the board. * * @param p_url The url of the xml file. If no url * is passed, the url ist computed from * the level data object (I-DataLevel) */ function load(p_url: String = null): void; ///////////////////////////////////////////////////////////////////////////// // End of interface ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of file /////////////////////////////////////////////////////////////////////////////////