summaryrefslogtreecommitdiff
path: root/reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java')
-rw-r--r--reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java b/reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java
index 3eca2872be83..b1cd7634303a 100644
--- a/reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java
+++ b/reportbuilder/java/org/libreoffice/report/util/DefaultParameterMap.java
@@ -33,11 +33,6 @@ public class DefaultParameterMap implements ParameterMap
backend = new HashMap<String,Object>();
}
- public void clear()
- {
- backend.clear();
- }
-
/**
* Retrieves the value stored for a key in this properties collection.
*
@@ -54,61 +49,9 @@ public class DefaultParameterMap implements ParameterMap
return backend.get(key);
}
- /**
- * Retrieves the value stored for a key in this properties collection, and returning the
- * default value if the key was not stored in this properties collection.
- *
- * @param key the property key.
- * @param defaultValue the default value to be returned when the key is not stored in
- * this properties collection.
- * @return The stored value, or the default value if the key does not exist in this
- * collection.
- */
- public Object get(final String key, final Object defaultValue)
- {
- if (key == null)
- {
- throw new NullPointerException("DefaultParameterMap.get (..): Parameter 'key' must not be null");
- }
- final Object o = this.backend.get(key);
- if (o == null)
- {
- return defaultValue;
- }
- return o;
- }
-
public String[] keys()
{
return this.backend.keySet().toArray(new String[backend.size()]);
}
- /**
- * Adds a property to this properties collection. If a property with the given name
- * exist, the property will be replaced with the new value. If the value is null, the
- * property will be removed.
- *
- * @param key the property key.
- * @param value the property value.
- */
- public void put(final String key, final Object value)
- {
- if (key == null)
- {
- throw new NullPointerException("ReportProperties.put (..): Parameter 'key' must not be null");
- }
- if (value == null)
- {
- this.backend.remove(key);
- }
- else
- {
- this.backend.put(key, value);
- }
- }
-
- public int size()
- {
- return this.backend.size();
- }
}