注释格式化;

This commit is contained in:
Magese 2021-12-31 17:36:34 +08:00
parent 020f83e665
commit 5ab517079b
1 changed files with 10 additions and 10 deletions

View File

@ -29,21 +29,21 @@ package org.wltea.analyzer.core;
/**
*
* 子分词器接口
*/
interface ISegmenter {
/**
* 从分析器读取下一个可能分解的词元对象
* @param context 分词算法上下文
*/
void analyze(AnalyzeContext context);
/**
* 从分析器读取下一个可能分解的词元对象
*
* @param context 分词算法上下文
*/
void analyze(AnalyzeContext context);
/**
* 重置子分析器状态
*/
void reset();
/**
* 重置子分析器状态
*/
void reset();
}