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;
| }
|
| }
|
|