Package test.mmseg

Source Code of test.mmseg.Simple

package test.mmseg;

import java.io.IOException;

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

/**
*
* @author chenlb 2009-3-14 上午12:38:40
*/
public class Simple extends Complex {

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

    protected Seg getSeg() {

    return new SimpleSeg(dic);
  }

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

}
TOP

Related Classes of test.mmseg.Simple

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.