001package com.ericlam.mc.eldgui;
002
003/**
004 * 界面服務類,用於獲取界面調度器
005 */
006public interface InventoryService {
007
008    /**
009     * 獲取界面調度器
010     * @param controller 控制器 id
011     * @return 界面調度器
012     * @throws UINotFoundException 找不到該 控制器
013     */
014    UIDispatcher getUIDispatcher(String controller) throws UINotFoundException;
015}