Uses of Interface
net.sf.jasperreports.engine.JRGroup

Packages that use JRGroup
net.sf.jasperreports.components.table.fill   
net.sf.jasperreports.engine Provides access to the library's main functionality through façade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes. 
net.sf.jasperreports.engine.base Contains base implementations for the library's main interfaces. 
net.sf.jasperreports.engine.design Contains design time implementations for the library's main interfaces as well as report compiling tools. 
net.sf.jasperreports.engine.fill Contains fill time implementations for the library's main interfaces and the entire engine used in the filling process (the actual core of JasperReports). 
net.sf.jasperreports.engine.xml Contains classes for loading report templates from XML files. 
 

Uses of JRGroup in net.sf.jasperreports.components.table.fill
 

Classes in net.sf.jasperreports.components.table.fill that implement JRGroup
 class TableReportGroup
           
 

Methods in net.sf.jasperreports.components.table.fill that return JRGroup
 JRGroup[] TableReportDataset.getGroups()
           
 JRGroup[] TableReport.getGroups()
           
 JRGroup TableReportGroup.getOriginalGroup()
           
 

Methods in net.sf.jasperreports.components.table.fill with parameters of type JRGroup
 void TableReportDataset.addFirstGroup(JRGroup group)
           
protected  JRBaseGroup TableReportBaseObjectFactory.getGroup(JRGroup group)
           
 

Constructors in net.sf.jasperreports.components.table.fill with parameters of type JRGroup
TableReportGroup(JRGroup datasetGroup)
           
 

Uses of JRGroup in net.sf.jasperreports.engine
 

Methods in net.sf.jasperreports.engine that return JRGroup
 JRGroup JRTextField.getEvaluationGroup()
          Gets the evaluation group for this text field.
 JRGroup JRChart.getEvaluationGroup()
          Gets the evaluation group for this chart (only applies when evaluation time is group).
 JRGroup JRImage.getEvaluationGroup()
          Gets the evaluation group for this text field.
 JRGroup[] JRDataset.getGroups()
          Returns the dataset's groups.
 JRGroup[] JRReport.getGroups()
           
 JRGroup JRVariable.getIncrementGroup()
          Returns the group whose break triggers the variable increment.
 JRGroup JRElementDataset.getIncrementGroup()
          Gets the selected increment group in case of increment type group.
 JRGroup ElementDecorator.getPrintWhenGroupChanges()
           
 JRGroup JRElement.getPrintWhenGroupChanges()
          Returns the group for which an element with a printRepeatedValues attribute set to true will be redisplayed even if the value has not changed.
 JRGroup JRVariable.getResetGroup()
          Returns the group whose break triggers the variable reset.
 JRGroup JRElementDataset.getResetGroup()
          Gets the selected reset group in case of reset type group.
 

Uses of JRGroup in net.sf.jasperreports.engine.base
 

Classes in net.sf.jasperreports.engine.base that implement JRGroup
 class JRBaseGroup
           
 

Fields in net.sf.jasperreports.engine.base declared as JRGroup
protected  JRGroup JRBaseChart.evaluationGroup
           
protected  JRGroup JRBaseTextField.evaluationGroup
           
protected  JRGroup JRBaseImage.evaluationGroup
           
protected  JRGroup[] JRBaseDataset.groups
           
protected  JRGroup JRBaseVariable.incrementGroup
           
protected  JRGroup JRBaseElementDataset.incrementGroup
           
protected  JRGroup JRBaseElement.printWhenGroupChanges
           
protected  JRGroup JRBaseVariable.resetGroup
           
protected  JRGroup JRBaseElementDataset.resetGroup
           
 

Methods in net.sf.jasperreports.engine.base that return JRGroup
 JRGroup JRBaseChart.getEvaluationGroup()
           
 JRGroup JRBaseTextField.getEvaluationGroup()
           
 JRGroup JRBaseImage.getEvaluationGroup()
           
 JRGroup[] JRBaseDataset.getGroups()
           
 JRGroup[] JRBaseReport.getGroups()
           
 JRGroup JRBaseVariable.getIncrementGroup()
           
 JRGroup JRBaseElementDataset.getIncrementGroup()
           
 JRGroup JRBaseElement.getPrintWhenGroupChanges()
           
 JRGroup JRBaseVariable.getResetGroup()
           
 JRGroup JRBaseElementDataset.getResetGroup()
           
 

Methods in net.sf.jasperreports.engine.base with parameters of type JRGroup
protected  JRBaseGroup JRBaseObjectFactory.getGroup(JRGroup group)
           
 

Constructors in net.sf.jasperreports.engine.base with parameters of type JRGroup
JRBaseGroup(JRGroup group, JRBaseObjectFactory factory)
           
 

Uses of JRGroup in net.sf.jasperreports.engine.design
 

Classes in net.sf.jasperreports.engine.design that implement JRGroup
 class JRDesignGroup
           
 

Fields in net.sf.jasperreports.engine.design declared as JRGroup
protected  JRGroup JRDesignChart.evaluationGroup
           
protected  JRGroup JRDesignImage.evaluationGroup
           
protected  JRGroup JRDesignTextField.evaluationGroup
           
 

Fields in net.sf.jasperreports.engine.design with type parameters of type JRGroup
protected  java.util.List<JRGroup> JRDesignDataset.groupsList
           
protected  java.util.Map<java.lang.String,JRGroup> JRDesignDataset.groupsMap
          Groups mapped by name.
 

Methods in net.sf.jasperreports.engine.design that return JRGroup
 JRGroup JRDesignChart.getEvaluationGroup()
           
 JRGroup JRDesignImage.getEvaluationGroup()
           
 JRGroup JRDesignTextField.getEvaluationGroup()
           
 JRGroup[] JRDesignDataset.getGroups()
           
 JRGroup JRDesignDataset.removeGroup(JRGroup group)
          Removes a group from the dataset.
 JRGroup JasperDesign.removeGroup(JRGroup group)
           
 JRGroup JRDesignDataset.removeGroup(java.lang.String groupName)
          Removes a group from the dataset.
 JRGroup JasperDesign.removeGroup(java.lang.String groupName)
          Removes a new group from the report design.
 

Methods in net.sf.jasperreports.engine.design that return types with arguments of type JRGroup
 java.util.List<JRGroup> JRDesignDataset.getGroupsList()
          Returns the list of groups.
 java.util.List<JRGroup> JasperDesign.getGroupsList()
          Gets an array of report groups.
 java.util.Map<java.lang.String,JRGroup> JRDesignDataset.getGroupsMap()
          Returns the map of groups indexed by name.
 java.util.Map<java.lang.String,JRGroup> JasperDesign.getGroupsMap()
          Gets a list of report groups.
 

Methods in net.sf.jasperreports.engine.design with parameters of type JRGroup
 JRGroup JRDesignDataset.removeGroup(JRGroup group)
          Removes a group from the dataset.
 JRGroup JasperDesign.removeGroup(JRGroup group)
           
 void JRDesignChart.setEvaluationGroup(JRGroup group)
           
 void JRDesignImage.setEvaluationGroup(JRGroup evaluationGroup)
           
 void JRDesignTextField.setEvaluationGroup(JRGroup evaluationGroup)
           
 void JRDesignElementDataset.setIncrementGroup(JRGroup group)
           
 void JRDesignVariable.setIncrementGroup(JRGroup group)
           
 void JRDesignElement.setPrintWhenGroupChanges(JRGroup group)
          Specifies the group for which an element with a printRepeatedValues attribute set to true will be redisplayed even if the value has not changed.
 void JRDesignElementDataset.setResetGroup(JRGroup group)
           
 void JRDesignVariable.setResetGroup(JRGroup group)
           
 

Uses of JRGroup in net.sf.jasperreports.engine.fill
 

Classes in net.sf.jasperreports.engine.fill that implement JRGroup
 class JRFillGroup
           
 

Fields in net.sf.jasperreports.engine.fill declared as JRGroup
protected  JRGroup JRFillChart.evaluationGroup
           
protected  JRGroup JRFillElementDataset.incrementGroup
           
protected  JRGroup JRFillGroup.parent
           
protected  JRGroup JRFillElement.printWhenGroupChanges
           
protected  JRGroup JRFillElementDataset.resetGroup
           
 

Methods in net.sf.jasperreports.engine.fill that return JRGroup
 JRGroup JRFillChart.getEvaluationGroup()
           
 JRGroup JRFillTextField.getEvaluationGroup()
           
 JRGroup JRFillImage.getEvaluationGroup()
           
 JRGroup[] JRFillDataset.getGroups()
           
 JRGroup JRFillVariable.getIncrementGroup()
           
 JRGroup JRFillElementDataset.getIncrementGroup()
           
 JRGroup JRFillElement.getPrintWhenGroupChanges()
           
 JRGroup JRFillVariable.getResetGroup()
           
 JRGroup JRFillElementDataset.getResetGroup()
           
 

Methods in net.sf.jasperreports.engine.fill with parameters of type JRGroup
protected  void JRBaseFiller.addBoundElement(JRFillElement element, JRPrintElement printElement, EvaluationTimeEnum evaluationType, JRGroup group, JRFillBand band)
           
static JREvaluationTime JREvaluationTime.getEvaluationTime(EvaluationTimeEnum type, JRGroup group, JRFillBand band)
          Returns the evaluation time corresponding to an evaluation time type.
protected  JRFillGroup JRParameterDefaultValuesEvaluator.ObjectFactory.getGroup(JRGroup group)
           
protected  JRFillGroup JRFillObjectFactory.getGroup(JRGroup group)
           
protected  boolean JRFillBand.isNewGroup(JRGroup group)
           
protected  void JRFillBand.setNewGroup(JRGroup group, boolean isNew)
           
protected  void JRFillSection.setNewGroup(JRGroup group, boolean isNew)
           
 

Constructors in net.sf.jasperreports.engine.fill with parameters of type JRGroup
JRFillGroup(JRGroup group, JRFillObjectFactory factory)
           
 

Uses of JRGroup in net.sf.jasperreports.engine.xml
 

Methods in net.sf.jasperreports.engine.xml that return JRGroup
 JRGroup TextFieldEvaluationGroupReference.getGroupReference()
           
 JRGroup ChartEvaluationGroupReference.getGroupReference()
           
 JRGroup ElementReprintGroupReference.getGroupReference()
           
 JRGroup ImageEvaluationGroupReference.getGroupReference()
           
 JRGroup XmlGroupReference.getGroupReference()
           
protected  JRGroup JRXmlLoader.resolveGroup(java.lang.String groupName, XmlLoaderReportContext context)
           
 

Methods in net.sf.jasperreports.engine.xml with parameters of type JRGroup
 void TextFieldEvaluationGroupReference.assignGroup(JRGroup group)
           
 void ChartEvaluationGroupReference.assignGroup(JRGroup group)
           
 void ElementReprintGroupReference.assignGroup(JRGroup group)
           
 void ImageEvaluationGroupReference.assignGroup(JRGroup group)
           
 void XmlGroupReference.assignGroup(JRGroup group)
           
 



© 2001-2010 Jaspersoft Corporation www.jaspersoft.com