package com.vci.client.framework.specialrole.ModuleInterface; import javax.swing.JPanel; import com.vci.client.logon.client.VCIModuleMainPanel; /** * 模块显示 * @author liudi * */ public interface IModuleShow { /** * 用户id * @return */ public String getUserID(); /** * 角色id * @return */ public String getRoleID(); /** * 模块组件 * @return */ public JPanel getModuleComponent(); /** * 模块名称 * @return */ public String getModuleName(); /** * 图标 * @return */ public String getIconName(); /** * 模块提示 * @return */ public String getModuleShowInfo(); }