Package net.sf.jasperreports.engine.base

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

/*
* 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 java.io.Serializable;

import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRParameter;
import net.sf.jasperreports.engine.JRPropertiesHolder;
import net.sf.jasperreports.engine.JRPropertiesMap;
import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.design.events.JRChangeEventsSupport;
import net.sf.jasperreports.engine.design.events.JRPropertyChangeSupport;
import net.sf.jasperreports.engine.util.JRClassLoader;


/**
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRBaseParameter.java 3941 2010-08-20 10:55:10Z teodord $
*/
public class JRBaseParameter implements JRParameter, Serializable, JRChangeEventsSupport
{


  /**
   *
   */
  private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
 
  public static final String PROPERTY_DESCRIPTION = "description";

  /**
   *
   */
  protected String name;
  protected String description;
  protected String valueClassName = java.lang.String.class.getName();
  protected String valueClassRealName;
  protected String nestedTypeName;
  protected boolean isSystemDefined;
  protected boolean isForPrompting = true;

  protected transient Class valueClass;
  protected transient Class nestedType;

  /**
   *
   */
  protected JRExpression defaultValueExpression;
 
  protected JRPropertiesMap propertiesMap;


  /**
   *
   */
  protected JRBaseParameter()
  {
    propertiesMap = new JRPropertiesMap();
  }
 
 
  /**
   *
   */
  protected JRBaseParameter(JRParameter parameter, JRBaseObjectFactory factory)
  {
    factory.put(parameter, this);
   
    name = parameter.getName();
    description = parameter.getDescription();
    valueClassName = parameter.getValueClassName();
    nestedTypeName = parameter.getNestedTypeName();
    isSystemDefined = parameter.isSystemDefined();
    isForPrompting = parameter.isForPrompting();

    defaultValueExpression = factory.getExpression(parameter.getDefaultValueExpression());
   
    propertiesMap = parameter.getPropertiesMap().cloneProperties();
  }
   

  /**
   *
   */
  public String getName()
  {
    return this.name;
  }
   
  /**
   *
   */
  public String getDescription()
  {
    return this.description;
  }
   
  /**
   *
   */
  public void setDescription(String description)
  {
    Object old = this.description;
    this.description = description;
    getEventSupport().firePropertyChange(PROPERTY_DESCRIPTION, old, this.description);
  }
 
  /**
   *
   */
  public Class getValueClass()
  {
    if (valueClass == null)
    {
      String className = getValueClassRealName();
      if (className != null)
      {
        try
        {
          valueClass = JRClassLoader.loadClassForName(className);
        }
        catch(ClassNotFoundException e)
        {
          throw new JRRuntimeException(e);
        }
      }
    }
   
    return valueClass;
  }

  /**
   *
   */
  public String getValueClassName()
  {
    return valueClassName;
  }

  /**
   *
   */
  private String getValueClassRealName()
  {
    if (valueClassRealName == null)
    {
      valueClassRealName = JRClassLoader.getClassRealName(valueClassName);
    }
   
    return valueClassRealName;
  }

  public Class getNestedType()
  {
    if (nestedTypeName != null && nestedType == null)
    {
      try
      {
        nestedType = JRClassLoader.loadClassForName(nestedTypeName);
      }
      catch(ClassNotFoundException e)
      {
        throw new JRRuntimeException(e);
      }
    }
   
    return nestedType;
  }


  public String getNestedTypeName()
  {
    return nestedTypeName;
  }

  /**
   *
   */
  public boolean isSystemDefined()
  {
    return this.isSystemDefined;
  }

  /**
   *
   */
  public boolean isForPrompting()
  {
    return this.isForPrompting;
  }

  /**
   *
   */
  public JRExpression getDefaultValueExpression()
  {
    return this.defaultValueExpression;
  }

 
  public boolean hasProperties()
  {
    return propertiesMap != null && propertiesMap.hasProperties();
  }


  public JRPropertiesMap getPropertiesMap()
  {
    return propertiesMap;
  }

 
  public JRPropertiesHolder getParentProperties()
  {
    return null;
  }

 
  /**
   *
   */
  public Object clone()
  {
    JRBaseParameter clone = null;

    try
    {
      clone = (JRBaseParameter)super.clone();
    }
    catch (CloneNotSupportedException e)
    {
      throw new JRRuntimeException(e);
    }

    if (defaultValueExpression != null)
    {
      clone.defaultValueExpression = (JRExpression)defaultValueExpression.clone();
    }
    if (propertiesMap != null)
    {
      clone.propertiesMap = (JRPropertiesMap)propertiesMap.clone();
    }
   
    return clone;
  }

 
  private transient JRPropertyChangeSupport eventSupport;
 
  public JRPropertyChangeSupport getEventSupport()
  {
    synchronized (this)
    {
      if (eventSupport == null)
      {
        eventSupport = new JRPropertyChangeSupport(this);
      }
    }
   
    return eventSupport;
  }

}
TOP

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

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.