Package com.chenlb.mmseg4j.analysis

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

package com.chenlb.mmseg4j.analysis;

import java.io.File;

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

/**
* mmseg ηš„ simple anlayzer.
*
* @author chenlb 2009-3-16 δΈ‹εˆ10:08:13
*/
public class SimpleAnalyzer extends MMSegAnalyzer {
 
  public SimpleAnalyzer() {
    super();
  }
 
  public SimpleAnalyzer(String path) {
    super(path);
  }
 
  public SimpleAnalyzer(Dictionary dic) {
    super(dic);
  }

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

  protected Seg newSeg() {
    return new SimpleSeg(dic);
  }
}
TOP

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

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.