franta-hg@15: /** franta-hg@15: * Free Telco Dictionary franta-hg@15: * Copyright © 2013 František Kučera (frantovo.cz) franta-hg@15: * franta-hg@15: * This program is free software: you can redistribute it and/or modify franta-hg@15: * it under the terms of the GNU General Public License as published by franta-hg@151: * the Free Software Foundation, version 3 of the License. franta-hg@15: * franta-hg@15: * This program is distributed in the hope that it will be useful, franta-hg@15: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@15: * GNU General Public License for more details. franta-hg@15: * franta-hg@15: * You should have received a copy of the GNU General Public License franta-hg@15: * along with this program. If not, see . franta-hg@15: */ franta-hg@15: package cz.frantovo.telco.dictionary; franta-hg@15: franta-hg@15: import java.util.Iterator; franta-hg@15: import javax.xml.XMLConstants; franta-hg@15: import javax.xml.namespace.NamespaceContext; franta-hg@15: import org.w3c.dom.Document; franta-hg@15: franta-hg@15: /** franta-hg@15: * franta-hg@15: * @author Ing. František Kučera (frantovo.cz) franta-hg@15: */ franta-hg@15: public class DocumentNamespaceContext implements NamespaceContext { franta-hg@15: franta-hg@15: private Document document; franta-hg@15: franta-hg@15: public DocumentNamespaceContext(Document document) { franta-hg@15: this.document = document; franta-hg@15: } franta-hg@15: franta-hg@15: @Override franta-hg@15: public String getNamespaceURI(String prefix) { franta-hg@15: if (prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)) { franta-hg@15: return document.lookupNamespaceURI(null); franta-hg@15: } else { franta-hg@15: return document.lookupNamespaceURI(prefix); franta-hg@15: } franta-hg@15: } franta-hg@15: franta-hg@15: @Override franta-hg@15: public String getPrefix(String xmlns) { franta-hg@15: return document.lookupPrefix(xmlns); franta-hg@15: } franta-hg@15: franta-hg@15: /** franta-hg@15: * TODO: support multiple prefixes franta-hg@15: */ franta-hg@15: @Override franta-hg@15: public Iterator getPrefixes(String xmlns) { franta-hg@15: return new OneItemIterator(getPrefix(xmlns)); franta-hg@15: } franta-hg@15: }