HasIndex.java :  » Natural-Language-Processing » Stanford-Parser » edu » stanford » nlp » ling » Java Open Source

Java Open Source » Natural Language Processing » Stanford Parser 
Stanford Parser » edu » stanford » nlp » ling » HasIndex.java
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);
}
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.