All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.ling.HasIndex Maven / Gradle / Ivy

package edu.stanford.nlp.ling;

/**
 * @author grenager
 */
public interface HasIndex {
  String docID();
  void setDocID(String docID);
  int sentIndex();
  void setSentIndex(int sentIndex);
  int index();
  void setIndex(int index);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy