doum
6 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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;
    }
 
}