summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/styles/StyleMappingRule.java
diff options
context:
space:
mode:
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;
+ }
}