rk
2 天以前 e6ec0f465d26c1228e96365e3d29f04e4661c457
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.doumee.lib_coremodel.config;
 
 
/**
 * @author <a href="mailto:jenly1314@gmail.com">Jenly</a>
 */
public abstract class FrameConfigModule implements AppliesOptions {
 
    /**
     * 是否启用解析配置
     * @return 默认返回{@code true}
     */
    public boolean isManifestParsingEnabled() {
        return true;
    }
 
}