public static String getSentence(String fileName, int lineIdx) { DocLine dl = DocLine.getDocLine(RelationExtractor.getDoclines(), lineIdx, fileName); if (dl == null) { return null; } return dl.getContent(); }
public static String getWords(String fileName, int lineIndex, int start, int end) { DocLine dl = DocLine.getDocLine(RelationExtractor.getDoclines(), lineIndex, fileName); if (dl == null) { System.out.println( "file " + fileName + " line " + lineIndex + " start " + start + " end " + end); return null; } return getWords(dl.getContent(), start - 1, end - 1); }
public static String getWord(String fileName, int lineIndex, int position) { DocLine dl = DocLine.getDocLine(RelationExtractor.getDoclines(), lineIndex, fileName); if (dl == null) return null; return getWord(dl.getContent(), position - 1); }