Package org.odftoolkit.simple.common.navigation

Examples of org.odftoolkit.simple.common.navigation.TextSelection.replaceWith()


    while (search.hasNext()) {
      TextSelection item = (TextSelection) search.nextSelection();
      table = sourcedoc.getTableByName("Table1");
      Cell cell = table.getCellByPosition(0, 0);
      cell.setStringValue("SIMPLE");
      Table newtable = item.replaceWith(table);
      Assert.assertNotNull(newtable);
      Assert.assertEquals(1, newtable.getHeaderColumnCount());
      Assert.assertEquals(1, newtable.getHeaderRowCount());
      Assert.assertEquals(7 + 1, newtable.getRowCount());
      Assert.assertEquals(5 + 1, newtable.getColumnCount());
View Full Code Here


    // Paragraph
    search = new TextNavigation("Task1", doc);
    while (search.hasNext()) {
      TextSelection item = (TextSelection) search.nextSelection();
      table = sourcedoc.getTableByName("Table2");
      Table newtable = item.replaceWith(table);
      Cell cell = newtable.getCellByPosition(0, 0);
      cell.setStringValue("From Source Table2");
      Assert.assertNotNull(newtable);
      Assert.assertEquals(1, newtable.getHeaderColumnCount());
      Assert.assertEquals(1, newtable.getHeaderRowCount());
View Full Code Here

    search = new TextNavigation("RESS%>", doc);
   
    while (search.hasNext()) {
      TextSelection item = (TextSelection) search.nextSelection();
      table = sourcedoc.getTableByName("Table3");
      Table newtable = item.replaceWith(table);
      Cell cell = newtable.getCellByPosition(0, 0);
      cell.setStringValue("From Source Table3");
      Assert.assertNotNull(newtable);
      Assert.assertEquals(5, newtable.getRowCount());
      Assert.assertEquals(3, newtable.getColumnCount());
View Full Code Here

    try {
      while (search.hasNext()) {
        i++;
        TextSelection item = (TextSelection) search.nextSelection();
        table = sourcedoc.getTableByName("Table1");
        Table newtable = item.replaceWith(table);
        Assert.assertNotNull(newtable);
        Assert.assertEquals(1, newtable.getHeaderColumnCount());
        Assert.assertEquals(1, newtable.getHeaderRowCount());
        Assert.assertEquals(7 + 1, newtable.getRowCount());
        Assert.assertEquals(5 + 1, newtable.getColumnCount());
View Full Code Here

      TextParagraphElementBase textParaEleBase = paragraph.getOdfElement();
      NodeList nodeImages = textParaEleBase.getElementsByTagName("draw:image");
      Node nodeImage = nodeImages.item(0);
      DrawImageElement im = (DrawImageElement) nodeImage;
      Image ima = Image.getInstanceof(im);
      image = item.replaceWith(ima);
      Assert.assertNotNull(image);
      if (image.getName().startsWith("replace")) {
        Assert.assertTrue(true);
      } else {
        Assert.fail();
View Full Code Here

    i = 0;
    try {
      while (search.hasNext()) {
        item = (TextSelection) search.nextSelection();
        URI imageuri = ResourceUtilities.getURI("image_list_item.png");
        image = item.replaceWith(imageuri);
        Assert.assertNotNull(image);
        if (image.getName().startsWith("replace")) {
          Assert.assertTrue(true);
        } else {
          Assert.fail();
View Full Code Here

    try {
      while (search.hasNext()) {
        i++;
        item = (TextSelection) search.nextSelection();
        URI imageuri = ResourceUtilities.getURI("image_list_item.png");
        image = item.replaceWith(imageuri);
        Assert.assertNotNull(image);
        if (image.getName().startsWith("replace")) {
          Assert.assertTrue(true);
        } else {
          Assert.fail();
View Full Code Here

    i = 0;
    try {
      while (search.hasNext()) {
        i++;
        item = (TextSelection) search.nextSelection();
        image = item.replaceWith(image);
        Assert.assertNotNull(image);
        if (image.getName().startsWith("replace")) {
          Assert.assertTrue(true);
        } else {
          Assert.fail();
View Full Code Here

    int i = 0;
    TextSelection item = null;
    while (search.hasNext()) {
      item = (TextSelection) search.nextSelection();
      Paragraph paragraph = sourcedoc.getParagraphByIndex(0, true);
      item.replaceWith(paragraph);
      i++;
    }
    search = new TextNavigation("Hello1 from SIMPLE source document!", doc);
    int j = 0;
    while (search.hasNext()) {
View Full Code Here

    i = 0;
    while (search.hasNext()) {
      item = (TextSelection) search.nextSelection();
     
      Paragraph paragraph = sourcedoc.getParagraphByIndex(1, true);
      item.replaceWith(paragraph);
      i++;
    }
    search = new TextNavigation("Hello2 from source document!", doc);
    j = 0;
    while (search.hasNext()) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.