559560561562563564565
* @date 13.12.2006 */ public boolean gotoStartOfWord(boolean mark) throws NOAException { if (supportsWordCursor()) return xWordCursor.gotoStartOfWord(mark); throw new NOAException("Word cursor operations not supported"); }
598599600601602603604
* @date 13.12.2006 */ public boolean isStartOfSentence() throws NOAException { if (supportsSentenceCursor()) return xSentenceCursor.isStartOfSentence(); throw new NOAException("Sentence cursor operations not supported"); }
616617618619620621622
* @date 13.12.2006 */ public boolean isEndOfSentence() throws NOAException { if (supportsSentenceCursor()) return xSentenceCursor.isEndOfSentence(); throw new NOAException("Sentence cursor operations not supported"); }
637638639640641642643
*/ public void gotoNextSentence(boolean mark) throws NOAException { if (supportsSentenceCursor()) xSentenceCursor.gotoNextSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
658659660661662663664
*/ public void gotoPreviousSentence(boolean mark) throws NOAException { if (supportsSentenceCursor()) xSentenceCursor.gotoPreviousSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
679680681682683684685
*/ public void gotoEndOfSentence(boolean mark) throws NOAException { if (supportsSentenceCursor()) xSentenceCursor.gotoEndOfSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
700701702703704705706
*/ public void gotoStartOfSentence(boolean mark) throws NOAException { if (supportsSentenceCursor()) xSentenceCursor.gotoStartOfSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
739740741742743744745
* @date 13.12.2006 */ public boolean isStartOfParagraph() throws NOAException { if (supportsParagraphCursor()) return xParagraphCursor.isStartOfParagraph(); throw new NOAException("Paragraph cursor operations not supported"); }
757758759760761762763
* @date 13.12.2006 */ public boolean isEndOfParagraph() throws NOAException { if (supportsParagraphCursor()) return xParagraphCursor.isEndOfParagraph(); throw new NOAException("Paragraph cursor operations not supported"); }
778779780781782783784
*/ public void gotoNextParagraph(boolean mark) throws NOAException { if (supportsParagraphCursor()) xParagraphCursor.gotoNextParagraph(mark); else throw new NOAException("Paragraph cursor operations not supported"); }