Package ag.ion.bion.officelayer.text

Examples of ag.ion.bion.officelayer.text.ITextCursor


   * @author Markus Kr�ger
   */
  public ICharacterPropertyStore getCharacterPropertyStore()
      throws TextException {
    if (characterPropertyStore == null) {
      ITextCursor cursor = getTextService().getCursorService()
          .getTextCursor();
      cursor.gotoStart(false);
      characterPropertyStore = new CharacterPropertyStore(cursor);
    }
    return characterPropertyStore;
  }
View Full Code Here


  @Override
  public String extractTag() {
    OODocument document = (OODocument) getTutorialDocument();
    ITextDocument textDocument = (ITextDocument) document.getDocument();
    ITextCursor textCursor = textDocument.getTextService()
        .getCursorService().getTextCursor();
    textCursor.gotoRange(textRange, false);
    return textCursor.getString();
  }
View Full Code Here

TOP

Related Classes of ag.ion.bion.officelayer.text.ITextCursor

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.