Package net.sf.jasperreports.crosstabs.type

Examples of net.sf.jasperreports.crosstabs.type.CrosstabTotalPositionEnum


 
  protected final void setGroupAtts(Attributes atts, JRDesignCrosstabGroup group)
  {
    group.setName(atts.getValue(ATTRIBUTE_name));
   
    CrosstabTotalPositionEnum totalPosition = CrosstabTotalPositionEnum.getByName(atts.getValue(ATTRIBUTE_totalPosition));
    if (totalPosition != null)
    {
      group.setTotalPosition(totalPosition);
    }
  }
View Full Code Here


 
  protected CollectedList createHeadersList(byte dimension, BucketMap bucketMap, int level, boolean total)
      throws JRException
  {
    BucketDefinition bucketDefinition = allBuckets[bucketMap.level];
    CrosstabTotalPositionEnum totalPosition = bucketDefinition.getTotalPosition();
    CollectedList headers;
    if (bucketDefinition.hasOrderValues())
    {
      headers = new OrderedCollectedList(bucketDefinition);
    }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.crosstabs.type.CrosstabTotalPositionEnum

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.