| | |
| | | * @param text 清除注释标记 |
| | | * @return 清除后的文本 |
| | | */ |
| | | public String removeAnnotation(String machineGroupCode,String text){ |
| | | List<DictBiz> annoDicts = getAnnotionDictList(); |
| | | ProgramAnnotation panno = this.getProgramAnnotationFormat(machineGroupCode,annoDicts); |
| | | //String[] arr = getAnnotationStartAndEnd(machineGroupCode,annoDicts); |
| | | return panno.cleanAnnotation(text); |
| | | } |
| | | public String removeAnnotation(String machineGroupCode,String text){ |
| | | List<DictBiz> annoDicts = getAnnotionDictList(); |
| | | return removeAnnotation(machineGroupCode,text,annoDicts); |
| | | } |
| | | |
| | | public String removeAnnotation(String machineGroupCode,String text,List<DictBiz> annotatiionList){ |
| | | ProgramAnnotation panno = this.getProgramAnnotationFormat(machineGroupCode,annotatiionList); |
| | | return panno.cleanAnnotation(text); |
| | | } |
| | | /** |
| | | * 设置固化注释行 |
| | | * @param inputStream 输入框 |