Package org.odftoolkit.odfdom.incubator.search

Examples of org.odftoolkit.odfdom.incubator.search.TextNavigation


  }

  @Test
  public void testGetInstance() {
    //get the text content contains "cell"
    TextNavigation search = new TextNavigation("cell", odtdoc);
    while (search.hasNext()) {
      TextSelection item = (TextSelection) search.getCurrentItem();
      OdfElement containerEle = item.getContainerElement();
      if (containerEle instanceof OdfTextParagraph) {
        Node ele = containerEle.getParentNode();
        if (ele instanceof TableTableCellElement) {
          OdfTableCell cell = OdfTableCell.getInstance((TableTableCellElementBase) ele);
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.incubator.search.TextNavigation

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.