summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
diff options
context:
space:
mode:
authorOcke Janssen [oj] <Ocke.Janssen@sun.com>2009-11-19 09:03:57 +0100
committerOcke Janssen [oj] <Ocke.Janssen@sun.com>2009-11-19 09:03:57 +0100
commit78155803fd8f1e7d6eb9f0af390a4a928d2fb9cd (patch)
treeccbf1863a72b8c39a7301c2ea856e77c95fdd933 /reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
parent563af76127ad7c1d20b21c1e8433b6122b34608f (diff)
dba33d: #i102563# use rootURL to resolve the given URI and some refactoring
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java47
1 files changed, 22 insertions, 25 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java b/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
index 742daf8ba6e5..e0fbd62a77d8 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
@@ -27,8 +27,6 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.styles;
/**
@@ -39,32 +37,31 @@ package com.sun.star.report.pentaho.styles;
*/
public class StyleMappingRule
{
- private final StyleMapperKey key;
- private final String family;
- private final boolean listOfValues;
-
- public StyleMappingRule(final StyleMapperKey key, final String family,
- final boolean listOfValues)
- {
- this.key = key;
- this.family = family;
- this.listOfValues = listOfValues;
- }
+ private final StyleMapperKey key;
+ private final String family;
+ private final boolean listOfValues;
+ public StyleMappingRule(final StyleMapperKey key, final String family,
+ final boolean listOfValues)
+ {
+ this.key = key;
+ this.family = family;
+ this.listOfValues = listOfValues;
+ }
- public StyleMapperKey getKey()
- {
- return key;
- }
+ public StyleMapperKey getKey()
+ {
+ return key;
+ }
- public String getFamily()
- {
- return family;
- }
+ public String getFamily()
+ {
+ return family;
+ }
- public boolean isListOfValues()
- {
- return listOfValues;
- }
+ public boolean isListOfValues()
+ {
+ return listOfValues;
+ }
}