summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java77
1 files changed, 37 insertions, 40 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java b/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java
index 2717eadea602..eca3f20fe0ef 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeGroup.java
@@ -27,8 +27,6 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.model;
import com.sun.star.report.pentaho.OfficeNamespaces;
@@ -46,54 +44,53 @@ import org.jfree.report.structure.Section;
*/
public class OfficeGroup extends Section
{
- public OfficeGroup()
- {
- }
- public boolean isStartNewColumn ()
- {
- return OfficeToken.TRUE.equals
- (getAttribute(OfficeNamespaces.OOREPORT_NS, "start-new-column"));
- }
+ public OfficeGroup()
+ {
+ }
- public boolean isResetPageNumber ()
- {
- return OfficeToken.TRUE.equals
- (getAttribute(OfficeNamespaces.OOREPORT_NS, "reset-page-number"));
- }
+ public boolean isStartNewColumn()
+ {
+ return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "start-new-column"));
+ }
- public OfficeGroupSection getHeader()
- {
- final OfficeGroupInstanceSection instanceSection =
- (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
- if (instanceSection == null)
+ public boolean isResetPageNumber()
{
- return null;
+ return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "reset-page-number"));
}
- return (OfficeGroupSection) instanceSection.findFirstChild
- (OfficeNamespaces.OOREPORT_NS, "group-header");
- }
+ public OfficeGroupSection getHeader()
+ {
+ final OfficeGroupInstanceSection instanceSection =
+ (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
+ if (instanceSection == null)
+ {
+ return null;
+ }
+ return (OfficeGroupSection) instanceSection.findFirstChild(OfficeNamespaces.OOREPORT_NS, "group-header");
- public OfficeGroupSection getFooter()
- {
- final OfficeGroupInstanceSection instanceSection =
- (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
- if (instanceSection == null)
+ }
+
+ public OfficeGroupSection getFooter()
{
- return null;
+ final OfficeGroupInstanceSection instanceSection =
+ (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
+ if (instanceSection == null)
+ {
+ return null;
+ }
+ return (OfficeGroupSection) instanceSection.findFirstChild(OfficeNamespaces.OOREPORT_NS, "group-footer");
+
}
- return (OfficeGroupSection) instanceSection.findFirstChild
- (OfficeNamespaces.OOREPORT_NS, "group-footer");
- }
- public Expression getGroupingExpression(){
- final OfficeGroupInstanceSection instanceSection =
- (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
- if (instanceSection == null)
+ public Expression getGroupingExpression()
{
- return null;
+ final OfficeGroupInstanceSection instanceSection =
+ (OfficeGroupInstanceSection) findFirstChild(JFreeReportInfo.REPORT_NAMESPACE, "group-instance");
+ if (instanceSection == null)
+ {
+ return null;
+ }
+ return instanceSection.getGroupingExpression();
}
- return instanceSection.getGroupingExpression();
- }
}