Tag: mws_bea300 User: obo Date: 2008-04-28 15:21:48+0000 Modified: dba/reportdesign/java/com/sun/star/report/pentaho/model/OfficeGroupSection.java
Log: INTEGRATION: CWS dba30beta_BEA300 (1.3.6); FILE MERGED 2008/04/22 10:30:27 oj 1.3.6.1: #i88503# merge changes from rptchart02 File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/model/ ==================================================================== File [changed]: OfficeGroupSection.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/model/OfficeGroupSection.java?r1=1.3&r2=1.3.4.1 Delta lines: +11 -11 --------------------- --- OfficeGroupSection.java 2008-04-10 17:31:36+0000 1.3 +++ OfficeGroupSection.java 2008-04-28 15:21:46+0000 1.3.4.1 @@ -27,12 +27,11 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - - package com.sun.star.report.pentaho.model; import org.jfree.report.structure.Section; import com.sun.star.report.pentaho.OfficeNamespaces; +import com.sun.star.report.OfficeToken; /** * A group header or footer. If such a section is marked as sticky, it will be @@ -43,14 +42,15 @@ */ public class OfficeGroupSection extends Section { + public OfficeGroupSection() { } - public boolean isRepeatSection () + public boolean isRepeatSection() { final Object repeatFlag = getAttribute(OfficeNamespaces.OOREPORT_NS, "repeat-section"); - return "true".equals(repeatFlag); + return OfficeToken.TRUE.equals(repeatFlag); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
