org.apache.abdera.parser.stax.FOMExtensibleElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fom-impl Show documentation
Show all versions of fom-impl Show documentation
Implementation of Abdera's Feed Object Model. Can be used as a drop in replacement for the abdera-parser artifact.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.abdera.parser.stax;
import java.util.List;
import javax.xml.namespace.QName;
import org.apache.abdera.model.Element;
import org.apache.abdera.model.ElementWrapper;
import org.apache.abdera.model.ExtensibleElement;
import org.apache.abdera.parser.stax.util.FOMElementIteratorWrapper;
import org.apache.abdera.parser.stax.util.FOMExtensionIterator;
import org.apache.axiom.fom.AbderaElement;
import org.apache.axiom.fom.AbderaExtensibleElement;
import org.apache.axiom.fom.FOMList;
import org.apache.axiom.om.OMElement;
@SuppressWarnings("unchecked")
public class FOMExtensibleElement extends FOMElement implements AbderaExtensibleElement {
public List getExtensions() {
return new FOMList(new FOMExtensionIterator(this));
}
public List getExtensions(String uri) {
return new FOMList(new FOMExtensionIterator(this, uri));
}
public List getExtensions(QName qname) {
FOMFactory factory = (FOMFactory)this.getFactory();
return new FOMList(new FOMElementIteratorWrapper(factory, _getChildrenWithName(qname)));
}
public T getExtension(QName qname) {
FOMFactory factory = (FOMFactory)getFactory();
T t = (T)_getFirstChildWithName(qname);
return (T)((t != null) ? factory.getElementWrapper(t) : null);
}
public T addExtension(Element extension) {
if (extension instanceof ElementWrapper) {
ElementWrapper wrapper = (ElementWrapper)extension;
extension = wrapper.getInternal();
}
QName qname = extension.getQName();
String prefix = qname.getPrefix();
declareIfNecessary(qname.getNamespaceURI(), prefix);
_addChild((AbderaElement)extension);
return (T)this;
}
public T addExtension(QName qname) {
String prefix = qname.getPrefix();
declareIfNecessary(qname.getNamespaceURI(), prefix);
return (T)getFactory().newExtensionElement(qname, this);
}
public T addExtension(String namespace, String localpart, String prefix) {
declareIfNecessary(namespace, prefix);
return (prefix != null) ? (T)addExtension(new QName(namespace, localpart, prefix))
: (T)addExtension(new QName(namespace, localpart, ""));
}
public Element addSimpleExtension(QName qname, String value) {
Element el = getFactory().newElement(qname, this);
el.setText(value);
String prefix = qname.getPrefix();
declareIfNecessary(qname.getNamespaceURI(), prefix);
return el;
}
public Element addSimpleExtension(String namespace, String localPart, String prefix, String value) {
declareIfNecessary(namespace, prefix);
return addSimpleExtension((prefix != null) ? new QName(namespace, localPart, prefix) : new QName(namespace,
localPart),
value);
}
public String getSimpleExtension(QName qname) {
Element el = getExtension(qname);
return (el != null) ? el.getText() : null;
}
public String getSimpleExtension(String namespace, String localPart, String prefix) {
return getSimpleExtension(new QName(namespace, localPart, prefix));
}
public void addExtensions(List extensions) {
for (Element e : extensions) {
addExtension(e);
}
}
/**
* Trick using Generics to find an extension element without having to pass in it's QName
*/
public T getExtension(Class _class) {
T t = null;
List extensions = getExtensions();
for (Element ext : extensions) {
if (_class.isAssignableFrom(ext.getClass())) {
t = (T)ext;
break;
}
}
return t;
}
private Element getInternal(Element element) {
if (element instanceof ElementWrapper) {
ElementWrapper wrapper = (ElementWrapper)element;
element = wrapper.getInternal();
}
return element;
}
public T addExtension(Element extension, Element before) {
extension = getInternal(extension);
before = getInternal(before);
if (before instanceof ElementWrapper) {
ElementWrapper wrapper = (ElementWrapper)before;
before = wrapper.getInternal();
}
if (before == null) {
addExtension(extension);
} else {
((OMElement)before).insertSiblingBefore((OMElement)extension);
}
return (T)this;
}
public T addExtension(QName qname, QName before) {
OMElement el = (OMElement)_getFirstChildWithName(before);
T element = (T)getFactory().newElement(qname);
if (el == null) {
addExtension(element);
} else {
el.insertSiblingBefore((OMElement)getInternal(element));
}
return (T)element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy