use of org.apache.poi.ss.util.CellReference in project poi by apache.
the class TestCellReference method testAbsRef3.
@Test
public void testAbsRef3() {
CellReference cf = new CellReference("B$5");
confirmCell(cf, null, 4, 1, true, false, "B$5");
}
use of org.apache.poi.ss.util.CellReference in project poi by apache.
the class TestCellReference method testAbsRef2.
@Test
public void testAbsRef2() {
CellReference cf = new CellReference(4, 1, true, true);
confirmCell(cf, null, 4, 1, true, true, "$B$5");
}
use of org.apache.poi.ss.util.CellReference in project poi by apache.
the class TestCellReference method testAbsRef6.
@Test
public void testAbsRef6() {
CellReference cf = new CellReference(4, 1, false, true);
confirmCell(cf, null, 4, 1, false, true, "$B5");
}
use of org.apache.poi.ss.util.CellReference in project poi by apache.
the class TestCellReference method testAbsRef4.
@Test
public void testAbsRef4() {
CellReference cf = new CellReference(4, 1, true, false);
confirmCell(cf, null, 4, 1, true, false, "B$5");
}
use of org.apache.poi.ss.util.CellReference in project poi by apache.
the class TestCellReference method testAbsRef7.
@Test
public void testAbsRef7() {
CellReference cf = new CellReference("B5");
confirmCell(cf, null, 4, 1, false, false, "B5");
}
Aggregations