SimpleConstituentFactory.java :  » Natural-Language-Processing » Part-Of-Speech » edu » stanford » nlp » trees » Java Open Source

Java Open Source » Natural Language Processing » Part Of Speech 
Part Of Speech » edu » stanford » nlp » trees » SimpleConstituentFactory.java
package edu.stanford.nlp.trees;

import edu.stanford.nlp.ling.Label;

/**
 * A <code>ConstituentFactory</code> acts as a factory for creating objects
 * of class <code>Constituent</code>, or some descendent class.
 * An interface.
 *
 * @author Christopher Manning
 */
public class SimpleConstituentFactory implements ConstituentFactory {

  public Constituent newConstituent(int start, int end) {
    return new SimpleConstituent(start, end);
  }


  public Constituent newConstituent(int start, int end, Label label, double score) {
    return new SimpleConstituent(start, end);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.