504505506507508509510
* @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"); }
539540541542543544545
* @date 13.12.2006 */ public boolean isStartOfSentence() throws NOAException { if(supportsSentenceCursor()) return xSentenceCursor.isStartOfSentence(); throw new NOAException("Sentence cursor operations not supported"); }
555556557558559560561
* @date 13.12.2006 */ public boolean isEndOfSentence() throws NOAException { if(supportsSentenceCursor()) return xSentenceCursor.isEndOfSentence(); throw new NOAException("Sentence cursor operations not supported"); }
573574575576577578579
*/ public void gotoNextSentence(boolean mark) throws NOAException { if(supportsSentenceCursor()) xSentenceCursor.gotoNextSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
591592593594595596597
*/ public void gotoPreviousSentence(boolean mark) throws NOAException { if(supportsSentenceCursor()) xSentenceCursor.gotoPreviousSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
609610611612613614615
*/ public void gotoEndOfSentence(boolean mark) throws NOAException { if(supportsSentenceCursor()) xSentenceCursor.gotoEndOfSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
627628629630631632633
*/ public void gotoStartOfSentence(boolean mark) throws NOAException { if(supportsSentenceCursor()) xSentenceCursor.gotoStartOfSentence(mark); else throw new NOAException("Sentence cursor operations not supported"); }
662663664665666667668
* @date 13.12.2006 */ public boolean isStartOfParagraph() throws NOAException { if(supportsParagraphCursor()) return xParagraphCursor.isStartOfParagraph(); throw new NOAException("Paragraph cursor operations not supported"); }
678679680681682683684
* @date 13.12.2006 */ public boolean isEndOfParagraph() throws NOAException { if(supportsParagraphCursor()) return xParagraphCursor.isEndOfParagraph(); throw new NOAException("Paragraph cursor operations not supported"); }
696697698699700701702
*/ public void gotoNextParagraph(boolean mark) throws NOAException { if(supportsParagraphCursor()) xParagraphCursor.gotoNextParagraph(mark); else throw new NOAException("Paragraph cursor operations not supported"); }