Package ag.ion.noa

Examples of ag.ion.noa.NOAException


   * @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");
  }       
View Full Code Here


   * @date 13.12.2006
   */
  public boolean isStartOfSentence() throws NOAException {
    if(supportsSentenceCursor())
      return xSentenceCursor.isStartOfSentence();
    throw new NOAException("Sentence cursor operations not supported");
  }    
View Full Code Here

   * @date 13.12.2006
   */
  public boolean isEndOfSentence() throws NOAException {
    if(supportsSentenceCursor())
      return xSentenceCursor.isEndOfSentence();
    throw new NOAException("Sentence cursor operations not supported");
  }
View Full Code Here

   */
  public void gotoNextSentence(boolean mark) throws NOAException {
    if(supportsSentenceCursor())
      xSentenceCursor.gotoNextSentence(mark);
    else
      throw new NOAException("Sentence cursor operations not supported");
  }   
View Full Code Here

   */
  public void gotoPreviousSentence(boolean mark) throws NOAException {
    if(supportsSentenceCursor())
      xSentenceCursor.gotoPreviousSentence(mark);
    else
      throw new NOAException("Sentence cursor operations not supported");
  }      
View Full Code Here

   */
  public void gotoEndOfSentence(boolean mark) throws NOAException {
    if(supportsSentenceCursor())
      xSentenceCursor.gotoEndOfSentence(mark);
    else
      throw new NOAException("Sentence cursor operations not supported");
  }      
View Full Code Here

   */
  public void gotoStartOfSentence(boolean mark) throws NOAException {
    if(supportsSentenceCursor())
      xSentenceCursor.gotoStartOfSentence(mark);
    else
      throw new NOAException("Sentence cursor operations not supported");
  }      
View Full Code Here

   * @date 13.12.2006
   */
  public boolean isStartOfParagraph() throws NOAException {
    if(supportsParagraphCursor())
      return xParagraphCursor.isStartOfParagraph();
    throw new NOAException("Paragraph cursor operations not supported");
  }   
View Full Code Here

   * @date 13.12.2006
   */
  public boolean isEndOfParagraph() throws NOAException {
    if(supportsParagraphCursor())
      return xParagraphCursor.isEndOfParagraph();
    throw new NOAException("Paragraph cursor operations not supported");
  }     
View Full Code Here

   */
  public void gotoNextParagraph(boolean mark) throws NOAException {
    if(supportsParagraphCursor())
      xParagraphCursor.gotoNextParagraph(mark);
    else
      throw new NOAException("Paragraph cursor operations not supported");
  }        
View Full Code Here

TOP

Related Classes of ag.ion.noa.NOAException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.