summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java45
1 files changed, 22 insertions, 23 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java b/reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java
index 578fc4f98716..e4f6e121c277 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/parser/AttributeSpecification.java
@@ -27,35 +27,34 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.parser;
public final class AttributeSpecification
{
- private final String namespaceUrl;
- private final String attributName;
- private final String mapperImplementation;
- public AttributeSpecification (String namespaceUrl, String attributName, String mapperImplementation)
- {
- this.namespaceUrl = namespaceUrl;
- this.attributName = attributName;
- this.mapperImplementation = mapperImplementation;
- }
+ private final String namespaceUrl;
+ private final String attributName;
+ private final String mapperImplementation;
+
+ public AttributeSpecification(String namespaceUrl, String attributName, String mapperImplementation)
+ {
+ this.namespaceUrl = namespaceUrl;
+ this.attributName = attributName;
+ this.mapperImplementation = mapperImplementation;
+ }
- public String getAttributName ()
- {
- return attributName;
- }
+ public String getAttributName()
+ {
+ return attributName;
+ }
- public String getMapperImplementation ()
- {
- return mapperImplementation;
- }
+ public String getMapperImplementation()
+ {
+ return mapperImplementation;
+ }
- public String getNamespaceUrl ()
- {
- return namespaceUrl;
- }
+ public String getNamespaceUrl()
+ {
+ return namespaceUrl;
+ }
}