Package com.chenlb.mmseg4j.analysis

Source Code of com.chenlb.mmseg4j.analysis.ComplexAnalyzer

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);
  }
}
TOP

Related Classes of com.chenlb.mmseg4j.analysis.ComplexAnalyzer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.