All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chenlb.mmseg4j.analysis.ComplexAnalyzer Maven / Gradle / Ivy

package com.chenlb.mmseg4j.analysis;

import java.io.File;

import com.chenlb.mmseg4j.ComplexSeg;
import com.chenlb.mmseg4j.Dictionary;
import com.chenlb.mmseg4j.Seg;

/**
 * mmseg 的 complex analyzer
 * 
 * @author chenlb 2009-3-16 下午10:08:16
 */
public class ComplexAnalyzer extends MMSegAnalyzer {

	public ComplexAnalyzer() {
		super();
	}

	public ComplexAnalyzer(String path) {
		super(path);
	}
	
	public ComplexAnalyzer(Dictionary dic) {
		super(dic);
	}

	public ComplexAnalyzer(File path) {
		super(path);
	}

	protected Seg newSeg() {
		return new ComplexSeg(dic);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy