summaryrefslogtreecommitdiffstats
blob: dc948ced29541d4fedc83894dfb1e0e21eeba2f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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);
    }
}