Package org.fnlp.nlp.cn.anaphora

Examples of org.fnlp.nlp.cn.anaphora.ARInstanceGetter


  public MyDocumentWriter(String str){
    this.str = str;
    fgr = new FileGroupReader(str);
    this.llist = new LinkedList<Instance>();
    Instance in = null; FeatureGeter fp = null;
    ARInstanceGetter arip = null;
    while(fgr.hasNext()){
      in = fgr.next();
      fp = new FeatureGeter(in);
      arip = new ARInstanceGetter(fp);
      llist.add(arip.getInstance());     
    }

  }
View Full Code Here

TOP

Related Classes of org.fnlp.nlp.cn.anaphora.ARInstanceGetter

Copyright © 2018 www.massapicom. 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.