Package org.zkoss.zss.model.impl

Examples of org.zkoss.zss.model.impl.RangeSimple


    }
    final int left = rngmin(rng1.getLeft(), rng2.getLeft());
    final int top = rngmin(rng1.getTop(), rng2.getTop());
    final int right = rngmax(rng1.getRight(), rng2.getRight());
    final int bottom = rngmax(rng1.getBottom(), rng2.getBottom());
    return new RangeSimple(sheet1, null, left, top, right, bottom);
  }
View Full Code Here


      if (top < 0 || top > bottom) {
        throw new SSErrorXelException(SSError.NULL);
      }
    }
   
    return new RangeSimple(sheet1, null, left, top, right, bottom);
  }
View Full Code Here

    ((SheetImpl)sheet2).setCellValue(8, 0, null); //A9
    ((SheetImpl)sheet2).setCellValue(9, 0, null); //A10
    ((SheetImpl)sheet2).setCellValue(10, 0, null); //A11
   
    //test Range.copy()
    new RangeSimple(sheet2, null, 0, 2, 0, 2).copy(new RangeSimple(sheet2, null, 0, 3, 0, 10)); //A3 -> A4:A11
/*    CellImpl cella3 = (CellImpl)sheet2.getCell(2,0);
    cella3.copy(sheet2.getCell(3,0)); //A4
    cella3.copy(sheet2.getCell(4,0)); //A5
    cella3.copy(sheet2.getCell(5,0)); //A6
    cella3.copy(sheet2.getCell(6,0)); //A7
    cella3.copy(sheet2.getCell(7,0)); //A8
    cella3.copy(sheet2.getCell(8,0)); //A9
    cella3.copy(sheet2.getCell(9,0)); //A10
    cella3.copy(sheet2.getCell(10,0)); //A11
*/   

    ((SheetImpl)sheet2).setCellValue(0, 1, new FormulaImpl("=SUM(A1,A2)")); //B1
    new RangeSimple(sheet2, null, 1, 0, 1, 0).copy(new RangeSimple(sheet2, null, 1, 1, 1, 10)); //B1 -> B2:B11
/*    ((SheetImpl)sheet2).setCellValue(1, 1, new FormulaImpl("=SUM(A2,A3)")); //B2
    ((SheetImpl)sheet2).setCellValue(2, 1, new FormulaImpl("=SUM(A3,A4)")); //B3
    ((SheetImpl)sheet2).setCellValue(3, 1, new FormulaImpl("=SUM(A4,A5)")); //B4
    ((SheetImpl)sheet2).setCellValue(4, 1, new FormulaImpl("=SUM(A5,A6)")); //B5
    ((SheetImpl)sheet2).setCellValue(5, 1, new FormulaImpl("=SUM(A6,A7)")); //B6
    ((SheetImpl)sheet2).setCellValue(6, 1, new FormulaImpl("=SUM(A7,A8)")); //B7
    ((SheetImpl)sheet2).setCellValue(7, 1, new FormulaImpl("=SUM(A8,A9)")); //B8
    ((SheetImpl)sheet2).setCellValue(8, 1, new FormulaImpl("=SUM(A9,A10)")); //B9
    ((SheetImpl)sheet2).setCellValue(9, 1, new FormulaImpl("=SUM(A10,A11)")); //B10
    ((SheetImpl)sheet2).setCellValue(10, 1, new FormulaImpl("=SUM(A11,A12)")); //B11
*/   
    //A1 B1 ~ A11 B11
    result = sheet2.getCell(0, 0).getResult(); //A1
    assertEquals(1d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(0, 1).getResult(); //B1
    assertEquals(3d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(1, 0).getResult(); //A2
    assertEquals(2d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(1, 1).getResult(); //B2
    assertEquals(5d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(2, 0).getResult(); //A3
    assertEquals(3d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(2, 1).getResult(); //B3
    assertEquals(8d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(3, 0).getResult(); //A4
    assertEquals(5d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(3, 1).getResult(); //B4
    assertEquals(13d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(4, 0).getResult(); //A5
    assertEquals(8d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(4, 1).getResult(); //B5
    assertEquals(21d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(5, 0).getResult(); //A6
    assertEquals(13d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(5, 1).getResult(); //B6
    assertEquals(34d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(6, 0).getResult(); //A7
    assertEquals(21d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(6, 1).getResult(); //B7
    assertEquals(55d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(7, 0).getResult(); //A8
    assertEquals(34d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(7, 1).getResult(); //B8
    assertEquals(89d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(8, 0).getResult(); //A9
    assertEquals(55d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(8, 1).getResult(); //B9
    assertEquals(144d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(9, 0).getResult(); //A10
    assertEquals(89d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(9, 1).getResult(); //B10
    assertEquals(233d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(10, 0).getResult(); //A11
    assertEquals(144d, ((Number)result).doubleValue(), 0d);
    result = sheet2.getCell(10, 1).getResult(); //B11
    assertEquals(144d, ((Number)result).doubleValue(), 0d);

    //A1 ~ A11
    result = sheet2.getCell(0, 0).getResult(); //A1
    assertEquals(1d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(1, 0).getResult(); //A2
    assertEquals(2d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(2, 0).getResult(); //A3
    assertEquals(3d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(3, 0).getResult(); //A4
    assertEquals(5d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(4, 0).getResult(); //A5
    assertEquals(8d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(5, 0).getResult(); //A6
    assertEquals(13d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(6, 0).getResult(); //A7
    assertEquals(21d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(7, 0).getResult(); //A8
    assertEquals(34d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(8, 0).getResult(); //A9
    assertEquals(55d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(9, 0).getResult(); //A10
    assertEquals(89d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(10, 0).getResult(); //A11
    assertEquals(144d, ((Number)result).doubleValue(), 0d);

    //B1 ~ B11
    result = sheet2.getCell(0, 1).getResult(); //B1
    assertEquals(3d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(1, 1).getResult(); //B2
    assertEquals(5d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(2, 1).getResult(); //B3
    assertEquals(8d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(3, 1).getResult(); //B4
    assertEquals(13d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(4, 1).getResult(); //B5
    assertEquals(21d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(5, 1).getResult(); //B6
    assertEquals(34d, ((Number)result).doubleValue(), 0d);
   
    result = sheet2.getCell(6, 1).getResult(); //B7
    assertEquals(55d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(7, 1).getResult(); //B8
    assertEquals(89d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(8, 1).getResult(); //B9
    assertEquals(144d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(9, 1).getResult(); //B10
    assertEquals(233d, ((Number)result).doubleValue(), 0d);

    result = sheet2.getCell(10, 1).getResult(); //B11
    assertEquals(144d, ((Number)result).doubleValue(), 0d);
   
    //test Range.cut()
    new RangeSimple(sheet2, null, 1, 0, 1, 0).cut(new RangeSimple(sheet2, null, 2, 1, 2, 1)); //B1 -> C2
    result = sheet2.getCell(1, 2).getResult(); //C2 == B1
    assertEquals(3d, ((Number)result).doubleValue(), 0d);
    assertNotNull(((SheetImpl)sheet2).getMatrix().getRef(sheet2, null, 2,1,2,1));
    assertNull(sheet2.getCell(0, 1)); //B1 -> no cell
   
View Full Code Here

TOP

Related Classes of org.zkoss.zss.model.impl.RangeSimple

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.