Package net.sf.jasperreports.engine.type

Examples of net.sf.jasperreports.engine.type.SplitTypeEnum


  /**
   *
   */
  public void setSplitType(SplitTypeEnum splitTypeValue)
  {
    SplitTypeEnum old = this.splitTypeValue;
    this.splitTypeValue = splitTypeValue;
    getEventSupport().firePropertyChange(JRBaseBand.PROPERTY_SPLIT_TYPE, old, this.splitTypeValue);
  }
View Full Code Here


  /**
   *
   */
  public void setSplitType(SplitTypeEnum splitTypeValue)
  {
    SplitTypeEnum old = this.splitTypeValue;
    this.splitTypeValue = splitTypeValue;
    getEventSupport().firePropertyChange(JRBaseBand.PROPERTY_SPLIT_TYPE, old, this.splitTypeValue);
  }
View Full Code Here

      {
        band.setSplitType(SplitTypeEnum.PREVENT);
      }
    }

    SplitTypeEnum splitType = SplitTypeEnum.getByName(atts.getValue(JRXmlConstants.ATTRIBUTE_splitType));
    if (splitType != null)
    {
      band.setSplitType(splitType);
    }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.type.SplitTypeEnum

Copyright © 2018 www.massapicom. 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.