Package com.chenlb.mmseg4j.example

Source Code of com.chenlb.mmseg4j.example.Simple

package com.chenlb.mmseg4j.example;

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 {
 
  protected Seg getSeg() {

    return new SimpleSeg(dic);
  }

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

}
TOP

Related Classes of com.chenlb.mmseg4j.example.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.