summaryrefslogtreecommitdiffstats
path: root/reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2010-01-27 13:51:16 +0100
committerIvo Hinkelmann <ihi@openoffice.org>2010-01-27 13:51:16 +0100
commit6163dce52f006f6f5a390eebd000caeaa1c70854 (patch)
treed789b8d74ace47cf1dbeecd505c268be107c6864 /reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java
parentCWS-TOOLING: integrate CWS vcl108 (diff)
parentAutomated merge with ssh://hg@hg.services.openoffice.org/cws/dba33b (diff)
downloadcore-6163dce52f006f6f5a390eebd000caeaa1c70854.tar.gz
core-6163dce52f006f6f5a390eebd000caeaa1c70854.zip
CWS-TOOLING: integrate CWS dba33d
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java25
1 files changed, 11 insertions, 14 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java b/reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java
index efef723425da..37ffed4ecd8d 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/model/DataStyle.java
@@ -27,8 +27,6 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.model;
import org.jfree.report.structure.Section;
@@ -42,19 +40,18 @@ import com.sun.star.report.pentaho.OfficeNamespaces;
*/
public class DataStyle extends Section
{
- public DataStyle()
- {
- }
-
- public String getStyleName()
- {
- return (String) getAttribute(OfficeNamespaces.STYLE_NS, "name");
- }
- public void setStyleName(final String name)
- {
- setAttribute(OfficeNamespaces.STYLE_NS, "name", name);
- }
+ public DataStyle()
+ {
+ }
+ public String getStyleName()
+ {
+ return (String) getAttribute(OfficeNamespaces.STYLE_NS, "name");
+ }
+ public void setStyleName(final String name)
+ {
+ setAttribute(OfficeNamespaces.STYLE_NS, "name", name);
+ }
}