Package org.odftoolkit.odfdom.incubator.search

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


  @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);
          Assert.assertTrue(cell.getStringValue().contains("cell"));
View Full Code Here

TOP

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

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.