【仅供内部供应商使用,不提供对外解答和培训】
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
package com.fr.fs.fun; import com.fr.fs.FSPlate; import com.fr.stable.fun.Level; /** * @author richie * @date 2015-04-14 * @since 8.0 */ public interface PlateProvider extends Level { String XML_TAG = "PlateProvider"; int CURRENT_LEVEL = 1; /** * 移动模块所对应的类 * @return 类 */ Class<? extends FSPlate> classForPlate(); /** * 模块标记字符串,该标记将会出现在FS.config.supportModules中(用于JS中调用) * @return 标记 */ String mark(); } |
...