Package org.formulacompiler.spreadsheet.internal.odf.loader.parser

Source Code of org.formulacompiler.spreadsheet.internal.odf.loader.parser.RowParser

/*
* Copyright (c) 2006-2009 by Abacus Research AG, Switzerland.
* All rights reserved.
*
* This file is part of the Abacus Formula Compiler (AFC).
*
* For commercial licensing, please contact sales(at)formulacompiler.com.
*
* AFC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* AFC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with AFC.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.formulacompiler.spreadsheet.internal.odf.loader.parser;

import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.stream.events.Attribute;
import javax.xml.stream.events.EndElement;
import javax.xml.stream.events.StartElement;

import org.formulacompiler.spreadsheet.SpreadsheetLoader;
import org.formulacompiler.spreadsheet.internal.loader.builder.RowBuilder;
import org.formulacompiler.spreadsheet.internal.loader.builder.SheetBuilder;
import org.formulacompiler.spreadsheet.internal.odf.XMLConstants;
import org.formulacompiler.spreadsheet.internal.odf.xml.stream.ElementHandler;
import org.formulacompiler.spreadsheet.internal.odf.xml.stream.ElementListener;

/**
* @author Vladimir Korenev
*/
class RowParser extends ElementHandler
{
  private final SheetBuilder sheetBuilder;
  private final SpreadsheetLoader.Config config;
  private int numberRowsRepeated;

  public RowParser( SheetBuilder _sheetBuilder, SpreadsheetLoader.Config _config )
  {
    this.sheetBuilder = _sheetBuilder;
    this.config = _config;
  }

  @Override
  public void elementStarted( final StartElement _startElement, final Map<QName, ElementListener> _handlers )
  {
    final Attribute attribute = _startElement.getAttributeByName( XMLConstants.Table.NUMBER_ROWS_REPEATED );
    this.numberRowsRepeated = attribute == null ? 1 : Integer.parseInt( attribute.getValue() );
    final RowBuilder rowBuilder = this.sheetBuilder.beginRow();
    final CellParser cellParser = new CellParser( rowBuilder, this.config );
    _handlers.put( XMLConstants.Table.TABLE_CELL, cellParser );
    _handlers.put( XMLConstants.Table.COVERED_TABLE_CELL, cellParser );
  }

  @Override
  public void elementEnded( final EndElement _endElement )
  {
    this.sheetBuilder.endRow( this.numberRowsRepeated );
  }
}
TOP

Related Classes of org.formulacompiler.spreadsheet.internal.odf.loader.parser.RowParser

TOP
Copyright © 2018 www.massapi.com. 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.