导出注解行数根据内容动态设置

This commit is contained in:
duandongmei
2018-10-22 09:15:30 +08:00
parent b5f199acbc
commit 600a41be37
6 changed files with 244 additions and 67 deletions

View File

@@ -194,6 +194,8 @@ public class BaseStringCfg<T> extends BaseCfg<T> {
public static List<BaseStringCfg> replaceBaseKeyList(List<BaseStringCfg> list){
for (int i = 0; i < list.size(); i++) {
BaseStringCfg base=(BaseStringCfg)list.get(i);
base.setIsHex(base.getIsHexbin());
base.setIsCaseInsenstive(base.getIsHexbin());
base.setCfgKeywords(Functions.replace(base.getCfgKeywords(), "***and***"," "));
}
return list;