Package org.formulacompiler.runtime.internal.spreadsheet

Examples of org.formulacompiler.runtime.internal.spreadsheet.SectionInfoImpl


      final CellAddress startCellAddress = new CellAddressImpl( _startSheetName, _startColumnIndex, _startRowIndex );
      final CellAddress endCellAddress = new CellAddressImpl( _endSheetName, _endColumnIndex, _endRowIndex );
      range = new RangeAddressImpl( startCellAddress, endCellAddress );
    }
    else range = null;
    return new SectionInfoImpl( _name, range, index );
  }
View Full Code Here


      final CellAddress cellAddress = (CellAddress) cellSource;
      final CellInfo cellInfo = new CellInfoImpl( cellAddress, _cell.getName() );
      final SectionModel sectionModel = _cell.getSection();
      final Object sectionSource = sectionModel.getSource();
      final RangeAddress range = sectionSource instanceof RangeAddress ? (RangeAddress) sectionSource : null;
      final SectionInfo sectionInfo = new SectionInfoImpl( sectionModel.getName(), range, -1 );
      final boolean input = _cell.isInput();
      final boolean output = _cell.isOutput();
      final SpreadsheetCellComputationEvent event = new SpreadsheetCellComputationEvent( cellInfo, sectionInfo,
          _value, input, output );
      this.listener.constantCellCalculated( event );
View Full Code Here

TOP

Related Classes of org.formulacompiler.runtime.internal.spreadsheet.SectionInfoImpl

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.