Package test.mmseg

Source Code of test.mmseg.MaxWord

package test.mmseg;

import java.io.IOException;

import com.chenlb.mmseg4j.MaxWordSeg;
import com.chenlb.mmseg4j.Seg;

public class MaxWord extends Complex {

    public MaxWord(String path) {
        super(path);
    }

    protected Seg getSeg() {

    return new MaxWordSeg(dic);
  }

  public static void main(String[] args) throws IOException {
//    new MaxWord().run(args);
  }
}
TOP

Related Classes of test.mmseg.MaxWord

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.