Package org.pentaho.reporting.engine.classic.core.modules.misc.tablemodel

Source Code of org.pentaho.reporting.engine.classic.core.modules.misc.tablemodel.DefaultTableMetaData

/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program 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 Lesser General Public License for more details.
*
* Copyright (c) 2001 - 2009 Object Refinery Ltd, Pentaho Corporation and Contributors..  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.core.modules.misc.tablemodel;

import org.pentaho.reporting.engine.classic.core.wizard.DataAttributes;
import org.pentaho.reporting.engine.classic.core.wizard.DefaultDataAttributes;
import org.pentaho.reporting.engine.classic.core.wizard.EmptyDataAttributes;
import org.pentaho.reporting.engine.classic.core.wizard.DefaultConceptQueryMapper;

/**
* Todo: Document Me
*
* @author Thomas Morgner
*/
public class DefaultTableMetaData
{
  private DefaultDataAttributes tableAttributes;
  private DefaultDataAttributes[] columnAttributes;
  private EmptyDataAttributes emptyDataAttributes;

  public DefaultTableMetaData(final int colCount)
  {
    this.emptyDataAttributes = EmptyDataAttributes.INSTANCE;
    this.tableAttributes = new DefaultDataAttributes();
    this.columnAttributes = new DefaultDataAttributes[colCount];
    for (int i = 0; i < columnAttributes.length; i++)
    {
      columnAttributes[i] = new DefaultDataAttributes();
    }
  }

  /**
   * Returns the meta-attribute as Java-Object. The object type that is expected by the report engine is defined in the
   * TableMetaData property set. It is the responsibility of the implementor to map the native meta-data model into a
   * model suitable for reporting.
   * <p/>
   * Meta-data models that only describe meta-data for columns can ignore the row-parameter.
   *
   * @param row    the row of the cell for which the meta-data is queried.
   * @param column the index of the column for which the meta-data is queried.
   * @return the meta-data object.
   */
  public DataAttributes getCellDataAttribute(final int row,
                                             final int column)
  {
    return emptyDataAttributes;
  }

  public boolean isCellDataAttributesSupported()
  {
    return false;
  }

  public DataAttributes getColumnAttribute(final int column)
  {
    return columnAttributes[column];
  }

  /**
   * Returns table-wide attributes. This usually contain hints about the data-source used to query the data as well as
   * hints on the sort-order of the data.
   *
   * @return
   */
  public DataAttributes getTableAttribute()
  {
    return tableAttributes;
  }

  public void setColumnAttribute(final int column,
                                 final String metaAttributeDomain,
                                 final String metaAttributeId,
                                 final Object value)
  {
    final DefaultDataAttributes colAtts = columnAttributes[column];
    colAtts.setMetaAttribute(metaAttributeDomain, metaAttributeId, DefaultConceptQueryMapper.INSTANCE, value);
  }

  public void setTableAttribute(final String namespace, final String name, final Object value)
  {
    tableAttributes.setMetaAttribute(namespace, name, DefaultConceptQueryMapper.INSTANCE, value);
  }

}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.misc.tablemodel.DefaultTableMetaData

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.