Package net.firstpartners.spreadsheet

Examples of net.firstpartners.spreadsheet.Cell


   
    //Create the test object
    Range testRange = new Range();
   
    // add some test cells
    Cell testCellOne = new Cell();
    testCellOne.setValue("cellValue1");
   
    Cell testCellTwo = new Cell();
    testCellTwo.setValue("cellValue2");
   
    testRange.put("name1",testCellOne);
    testRange.put("name2",testCellTwo);
   
    assertTrue(testRange.getRangeContainsValue("cellValue1"));
View Full Code Here

TOP

Related Classes of net.firstpartners.spreadsheet.Cell

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.