summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/parser/AttributeMap.java')
-rw-r--r--src/com/isode/stroke/parser/AttributeMap.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/com/isode/stroke/parser/AttributeMap.java b/src/com/isode/stroke/parser/AttributeMap.java
new file mode 100644
index 0000000..dc948ce
--- /dev/null
+++ b/src/com/isode/stroke/parser/AttributeMap.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2010, Isode Limited, London, England.
+ * All rights reserved.
+ */
+/*
+ * Copyright (c) 2010, Remko Tron¨on.
+ * All rights reserved.
+ */
+package com.isode.stroke.parser;
+
+import java.util.HashMap;
+
+/**
+ * XML element attributes.
+ */
+public class AttributeMap extends HashMap<String, String> {
+ public String getAttribute(String attribute) {
+ return this.get(attribute);
+ }
+
+ public String getAttributeValue(String attribute) {
+ return this.containsKey(attribute) ? this.get(attribute) : null;
+ }
+
+ public boolean getBoolAttribute(String attribute) {
+ return getBoolAttribute(attribute, false);
+ }
+
+ public boolean getBoolAttribute(String attribute, boolean defaultValue) {
+ String value = getAttribute(attribute);
+ return "true".equals(value) || "1".equals(value);
+ }
+}