⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reportpropertyfunction.java

📁 Java的Web报表库
💻 JAVA
字号:
/**
 * ========================================
 * JFreeReport : a free Java report library
 * ========================================
 *
 * Project Info:  http://www.jfree.org/jfreereport/index.html
 * Project Lead:  Thomas Morgner;
 *
 * (C) Copyright 2000-2002, by Simba Management Limited and Contributors.
 *
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation;
 * either version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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.
 *
 * You should have received a copy of the GNU Lesser General Public License along with this
 * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * ---------------------------
 * ReportPropertyFunction.java
 * ---------------------------
 * (C)opyright 2002, by Simba Management Limited and Contributors.
 *
 * Original Author:  David Gilbert (for Simba Management Limited);
 * Contributor(s):   Thomas Morgner;
 *
 * $Id: ReportPropertyFunction.java,v 1.19.2.1 2003/08/24 14:18:08 taqua Exp $
 *
 * Changes
 * -------
 * 01-Mar-2002 : Version 1 (DG);
 * 18-Apr-2002 : Using the generator to create a function will create the function using the
 *               default constructor. In this case, field was null and raised a null pointer
 *               exception (TM);
 * 24-Apr-2002 : Changed the implementation to reflect the changes in Function and
 *               AbstractFunction (TM);
 * 10-May-2002 : Applied the ReportEvent interface (TM);
 * 16-May-2002 : Changed 'field' to 'reportProperty' when looking up attributes.  Updated the
 *               Javadoc comments (DG);
 * 18-Aug-2002 : Fixed a bug where a reportProperty is not read correctly.
 *
 */

package com.jrefinery.report.function;

import java.io.Serializable;

import com.jrefinery.report.event.ReportEvent;
import com.jrefinery.report.states.ReportState;
import com.jrefinery.report.util.Log;

/**
 * A report function that returns a property that has been set for a report.
 * <P>
 * There are some properties that are defined for all reports: "report.name" and "report.date".
 * <P>
 * You can add arbitrary properties to a report using the setProperty method.
 * <P>
 * @deprecated ReportProperties are now retrieved from the report state.
 *
 * @author David Gilbert
 */
public class ReportPropertyFunction extends AbstractFunction implements Serializable
{

  /** The function value. */
  private Object value;

  /** Literal text for the 'reportProperty' property. */
  public static final String REPORTPROPERTY_PROPERTY = "reportProperty";

  /**
   * Default constructor (intended for use by the SAX handler only).
   */
  public ReportPropertyFunction()
  {
    Log.warn("The use of the 'ReportPropertyFunction' is deprecated. " +
        "Please use the 'property-ref' instead.");
  }

  /**
   * Constructs a new function.
   *
   * @param name  the function name.
   * @param propertyName  the property name.
   */
  public ReportPropertyFunction(final String name, final String propertyName)
  {
    setName(name);
    setField(propertyName);
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void reportStarted(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void reportFinished(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void pageStarted(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void pageFinished(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void groupStarted(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void groupFinished(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void itemsAdvanced(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void itemsStarted(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Updates the property value of this function.
   *
   * @param event  the event.
   */
  public void itemsFinished(final ReportEvent event)
  {
    final ReportState state = event.getState();
    value = state.getProperty(getField());
  }

  /**
   * Returns the function's value.
   *
   * @return the function value.
   */
  public Object getValue()
  {
    return this.value;
  }

  /**
   * Returns the name of the report property that the function accesses.
   * <P>
   * I recommend renaming this method getReportPropertyName() (DG);
   *
   * @return The name of the report property.
   */
  public String getField()
  {
    return getProperty(REPORTPROPERTY_PROPERTY);
  }

  /**
   * Sets the name of the report property that the function accesses.
   * <P>
   * I recommend renaming this method setReportPropertyName() (DG);
   *
   * @param field The report property name.
   */
  public void setField(final String field)
  {
    if (field == null)
    {
      throw new NullPointerException();
    }
    setProperty(REPORTPROPERTY_PROPERTY, field);
  }

  /**
   * Initialises the function.
   *
   * @throws FunctionInitializeException if the function is not fully initialised.
   */
  public void initialize() throws FunctionInitializeException
  {
    super.initialize();
    final String fieldProp = getProperty(REPORTPROPERTY_PROPERTY);
    if (fieldProp == null)
    {
      throw new FunctionInitializeException("No Such Property : reportProperty");
    }
    setField(fieldProp);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -