01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.aegis.util.stax;
19:
20: import java.util.ArrayList;
21: import java.util.Iterator;
22: import java.util.List;
23:
24: import javax.xml.namespace.NamespaceContext;
25:
26: import org.apache.cxf.aegis.util.NamespaceHelper;
27: import org.jdom.Element;
28: import org.jdom.Namespace;
29:
30: public class JDOMNamespaceContext implements NamespaceContext {
31: private Element element;
32:
33: public String getNamespaceURI(String prefix) {
34: Namespace namespace = element.getNamespace(prefix);
35: if (namespace == null) {
36: return null;
37: }
38:
39: return namespace.getURI();
40: }
41:
42: public String getPrefix(String uri) {
43: return NamespaceHelper.getPrefix(element, uri);
44: }
45:
46: public Iterator<String> getPrefixes(String uri) {
47: List<String> prefixes = new ArrayList<String>();
48: NamespaceHelper.getPrefixes(element, uri, prefixes);
49: return prefixes.iterator();
50: }
51:
52: public Element getElement() {
53: return element;
54: }
55:
56: public void setElement(Element element) {
57: this.element = element;
58: }
59: }
|