summaryrefslogtreecommitdiff
path: root/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java
index 937f7a40591c..7e60f65998ec 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java
@@ -20,29 +20,8 @@ package org.libreoffice.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;
}
- public String getAttributName()
- {
- return attributName;
- }
-
- public String getMapperImplementation()
- {
- return mapperImplementation;
- }
-
- public String getNamespaceUrl()
- {
- return namespaceUrl;
- }
}