summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/LangHelper.java
blob: 280e5cae15acc964cf90b3aabe9b448f157e5b74 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package org.madore.damlengine;

import org.w3c.dom.Node;
import org.w3c.dom.Element;

public class LangHelper {

    public static final String LANG = "lang";

    public static String getLangNorec(Node node) {
	if ( node instanceof Element )
	    return ((Element)node).getAttributeNS(DamlEngine.XML_NS, LANG);
	else
	    return null;
    }

    public static void setLangNorec(Element node, String lang) {
	if ( lang == null )
	    throw new Error("lang is null in setLangNorec");
	node.setAttributeNS(DamlEngine.XML_NS, LANG, lang);
    }

    public static void unsetLangNorec(Element node) {
	node.removeAttributeNS(DamlEngine.XML_NS, LANG);
    }

    public static String getLangRec(Node node) {
	// node may be null (in which case, return null)
	while ( node != null ) {
	    String lang = getLangNorec(node);
	    if ( lang != null )
		return lang;
	    node = node.getParentNode();
	}
	return null;
    }

    public static void setLangRec(Element node, String lang) {
	if ( lang == null )
	    throw new Error("lang is null in setLangRec");
	Node parentNode = node.getParentNode();
	String parentLang = (parentNode!=null)?getLangNorec(parentNode):null;
	if ( parentLang != null && lang.equals(parentLang) )
	    unsetLangNorec(node);
	else
	    setLangNorec(node,lang);
    }

}