Package ag.ion.bion.officelayer.internal.text

Examples of ag.ion.bion.officelayer.internal.text.TextTableCellName


* @author Andreas Br�ker
*/
public class TextTableCellNameTest extends TestCase {

  public void testGetName() {
    TextTableCellName name = new TextTableCellName("<A1>");
    Assert.assertEquals("A1", name.getName());
  }
View Full Code Here


    TextTableCellName name = new TextTableCellName("<A1>");
    Assert.assertEquals("A1", name.getName());
  }

  public void testGetRowIndex() {
    TextTableCellName name = new TextTableCellName("<A988>");
    Assert.assertEquals(987, name.getRowIndex());
  }
View Full Code Here

    TextTableCellName name = new TextTableCellName("<A988>");
    Assert.assertEquals(987, name.getRowIndex());
  }

  public void testGetColumnIndex() {
    TextTableCellName name = new TextTableCellName("a");
    Assert.assertEquals(26, name.getColumnIndex());
  }
View Full Code Here

* @author Andreas Br�ker
*/
public class TextTableCellNameTest extends TestCase {

  public void testGetName() {
    TextTableCellName name = new TextTableCellName("<A1>");
    Assert.assertEquals("A1", name.getName());
  }
View Full Code Here

    TextTableCellName name = new TextTableCellName("<A1>");
    Assert.assertEquals("A1", name.getName());
  }

  public void testGetRowIndex() {
    TextTableCellName name = new TextTableCellName("<A988>");
    Assert.assertEquals(987, name.getRowIndex());
  }
View Full Code Here

    TextTableCellName name = new TextTableCellName("<A988>");
    Assert.assertEquals(987, name.getRowIndex());
  }

  public void testGetColumnIndex() {
    TextTableCellName name = new TextTableCellName("a");
    Assert.assertEquals(26, name.getColumnIndex());
  }
View Full Code Here

      throw new IllegalArgumentException("The submitted table management is not valid.");
    if(!(textTable instanceof ETextTable))
      throw new IllegalArgumentException("The submitted table is not valid.");
    this.tableCell = tableCell;
    this.textTable = (ETextTable)textTable;
    textTableCellName = new TextTableCellName(cellName);
  }
View Full Code Here

    if (!(textTable instanceof ETextTable))
      throw new IllegalArgumentException(
          "The submitted table is not valid.");
    this.tableCell = tableCell;
    this.textTable = (ETextTable) textTable;
    textTableCellName = new TextTableCellName(cellName);
  }
View Full Code Here

TOP

Related Classes of ag.ion.bion.officelayer.internal.text.TextTableCellName

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.