rk
2 天以前 14773a2179f505e6707aab2b5ed41dbff12241ca
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;
    }
 
}