Package org.formulacompiler.runtime.spreadsheet

Examples of org.formulacompiler.runtime.spreadsheet.SpreadsheetCellComputationEvent


  {
    final Object value = _value;
    final CellComputationListener listener = this.environment.computationListener();
    final CellAddress cellAddress = new CellAddressImpl( _sheetName, _columnIndex, _rowIndex );
    final CellInfo cellInfo = new CellInfoImpl( cellAddress, _definedName );
    final SpreadsheetCellComputationEvent event = new SpreadsheetCellComputationEvent( cellInfo, this.sectionInfo, value, _input, _output );
    listener.cellCalculated( event );
  }
View Full Code Here


      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.spreadsheet.SpreadsheetCellComputationEvent

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.