summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java39
1 files changed, 20 insertions, 19 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java b/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java
index 02727c2b9d2a..41cc7aaa68d4 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/model/OfficeDocument.java
@@ -27,8 +27,6 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.model;
import com.sun.star.report.JobProperties;
@@ -43,32 +41,35 @@ import org.jfree.report.JFreeReport;
*/
public class OfficeDocument extends JFreeReport
{
- private OfficeStylesCollection stylesCollection;
- private JobProperties jobProperties;
- public JobProperties getJobProperties() {
+ private OfficeStylesCollection stylesCollection;
+ private JobProperties jobProperties;
+
+ public JobProperties getJobProperties()
+ {
return jobProperties;
}
- public void setJobProperties(final JobProperties jobProperties) {
+ public void setJobProperties(final JobProperties jobProperties)
+ {
this.jobProperties = jobProperties;
}
- public OfficeDocument()
- {
- }
+ public OfficeDocument()
+ {
+ }
- public OfficeStylesCollection getStylesCollection()
- {
- return stylesCollection;
- }
+ public OfficeStylesCollection getStylesCollection()
+ {
+ return stylesCollection;
+ }
- public void setStylesCollection(final OfficeStylesCollection stylesCollection)
- {
- if (stylesCollection == null)
+ public void setStylesCollection(final OfficeStylesCollection stylesCollection)
{
- throw new NullPointerException();
+ if (stylesCollection == null)
+ {
+ throw new NullPointerException();
+ }
+ this.stylesCollection = stylesCollection;
}
- this.stylesCollection = stylesCollection;
- }
}