Package net.sf.jasperreports.engine.base

Source Code of net.sf.jasperreports.engine.base.JRBaseSubreport

/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2009 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports 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 3 of the License, or
* (at your option) any later version.
*
* JasperReports 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 JasperReports. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.jasperreports.engine.base;

import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRExpressionCollector;
import net.sf.jasperreports.engine.JRSubreport;
import net.sf.jasperreports.engine.JRSubreportParameter;
import net.sf.jasperreports.engine.JRSubreportReturnValue;
import net.sf.jasperreports.engine.JRVisitor;
import net.sf.jasperreports.engine.type.ModeEnum;
import net.sf.jasperreports.engine.util.JRStyleResolver;


/**
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRBaseSubreport.java 3939 2010-08-20 09:52:00Z teodord $
*/
public class JRBaseSubreport extends JRBaseElement implements JRSubreport
{


  /**
   *
   */
  private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
 
  public static final String PROPERTY_USING_CACHE = "usingCache";
 
  public static final String PROPERTY_RUN_TO_BOTTOM = "runToBottom";

  /**
   *
   */
  protected Boolean isUsingCache;

  private Boolean runToBottom;

  /**
   *
   */
  protected JRExpression parametersMapExpression;
  protected JRSubreportParameter[] parameters;
  protected JRExpression connectionExpression;
  protected JRExpression dataSourceExpression;
  protected JRExpression expression;
 
  /**
   * Values to be copied from the subreport into the master report.
   */
  protected JRSubreportReturnValue[] returnValues;


  /**
   *
   */
  public ModeEnum getModeValue()
  {
    return JRStyleResolver.getMode(this, ModeEnum.TRANSPARENT);
  }


  /**
   *
   */
  protected JRBaseSubreport(JRSubreport subreport, JRBaseObjectFactory factory)
  {
    super(subreport, factory);
   
    isUsingCache = subreport.isOwnUsingCache();
   
    runToBottom = subreport.isRunToBottom();

    parametersMapExpression = factory.getExpression(subreport.getParametersMapExpression());

    /*   */
    JRSubreportParameter[] jrSubreportParameters = subreport.getParameters();
    if (jrSubreportParameters != null && jrSubreportParameters.length > 0)
    {
      parameters = new JRSubreportParameter[jrSubreportParameters.length];
      for(int i = 0; i < parameters.length; i++)
      {
        parameters[i] = factory.getSubreportParameter(jrSubreportParameters[i]);
      }
    }

    connectionExpression = factory.getExpression(subreport.getConnectionExpression());
    dataSourceExpression = factory.getExpression(subreport.getDataSourceExpression());
   
    JRSubreportReturnValue[] subrepReturnValues = subreport.getReturnValues();
    if (subrepReturnValues != null && subrepReturnValues.length > 0)
    {
      this.returnValues = new JRSubreportReturnValue[subrepReturnValues.length];
      for (int i = 0; i < subrepReturnValues.length; i++)
      {
        this.returnValues[i] = factory.getSubreportReturnValue(subrepReturnValues[i]);
      }
    }
   
    expression = factory.getExpression(subreport.getExpression());
  }
   

  /**
   *
   */
  public boolean isUsingCache()
  {
    if (isUsingCache == null)
    {
      JRExpression subreportExpression = getExpression();
      if (subreportExpression != null)
      {
        return String.class.getName().equals(subreportExpression.getValueClassName());
      }
      return true;
    }
    return isUsingCache.booleanValue();
  }


  /**
   * @deprecated Replaced by {@link #setUsingCache(Boolean)}.
   */
  public void setUsingCache(boolean isUsingCache)
  {
    setUsingCache(isUsingCache ? Boolean.TRUE : Boolean.FALSE);
  }


  /**
   *
   */
  public JRExpression getParametersMapExpression()
  {
    return this.parametersMapExpression;
  }


  /**
   *
   */
  public JRSubreportParameter[] getParameters()
  {
    return this.parameters;
  }


  /**
   *
   */
  public JRExpression getConnectionExpression()
  {
    return this.connectionExpression;
  }


  /**
   *
   */
  public JRExpression getDataSourceExpression()
  {
    return this.dataSourceExpression;
  }


  /**
   *
   */
  public JRExpression getExpression()
  {
    return this.expression;
  }
 
  /**
   *
   */
  public void collectExpressions(JRExpressionCollector collector)
  {
    collector.collect(this);
  }

  /**
   *
   */
  public void visit(JRVisitor visitor)
  {
    visitor.visitSubreport(this);
  }

 
  /**
   * Returns the list of values to be copied from the subreport into the master.
   *
   * @return the list of values to be copied from the subreport into the master.
   */
  public JRSubreportReturnValue[] getReturnValues()
  {
    return this.returnValues;
  }


  public Boolean isOwnUsingCache()
  {
    return isUsingCache;
  }


  public void setUsingCache(Boolean isUsingCache)
  {
    Object old = this.isUsingCache;
    this.isUsingCache = isUsingCache;
    getEventSupport().firePropertyChange(PROPERTY_USING_CACHE, old, this.isUsingCache);
  }

 
  public Boolean isRunToBottom()
  {
    return runToBottom;
  }


  public void setRunToBottom(Boolean runToBottom)
  {
    Object old = this.runToBottom;
    this.runToBottom = runToBottom;
    getEventSupport().firePropertyChange(PROPERTY_RUN_TO_BOTTOM, old, this.runToBottom);
  }


  /**
   *
   */
  public Object clone()
  {
    JRBaseSubreport clone = (JRBaseSubreport)super.clone();
   
    if (parameters != null)
    {
      clone.parameters = new JRSubreportParameter[parameters.length];
      for(int i = 0; i < parameters.length; i++)
      {
        clone.parameters[i] = (JRSubreportParameter)parameters[i].clone();
      }
    }

    if (returnValues != null)
    {
      clone.returnValues = new JRSubreportReturnValue[returnValues.length];
      for(int i = 0; i < returnValues.length; i++)
      {
        clone.returnValues[i] = (JRSubreportReturnValue)returnValues[i].clone();
      }
    }

    if (parametersMapExpression != null)
    {
      clone.parametersMapExpression = (JRExpression)parametersMapExpression.clone();
    }
    if (connectionExpression != null)
    {
      clone.connectionExpression = (JRExpression)connectionExpression.clone();
    }
    if (dataSourceExpression != null)
    {
      clone.dataSourceExpression = (JRExpression)dataSourceExpression.clone();
    }
    if (expression != null)
    {
      clone.expression = (JRExpression)expression.clone();
    }

    return clone;
  }
}
TOP

Related Classes of net.sf.jasperreports.engine.base.JRBaseSubreport

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.