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

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

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