org.apache.axiom.om.OMElement Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. 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.
*/
package org.apache.axiom.om;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
import java.io.OutputStream;
import java.io.Writer;
import java.util.Iterator;
/**
* A particular kind of node that represents an element infoset information item.
*
* An element has a collection of children, attributes, and namespace declarations. In contrast with
* DOM, this interface exposes namespace declarations separately from the attributes.
*
* Namespace declarations are either added explicitly using
* {@link #declareNamespace(String, String)}, {@link #declareDefaultNamespace(String)} or
* {@link #declareNamespace(OMNamespace)}, or are created implicitly as side effect of other method
* calls:
*
* - If the element is created with a namespace and no matching namespace declaration is in scope
* in the location in the tree where the element is created, then an appropriate namespace
* declaration will be automatically added to the newly created element. The exact rules depend on
* the method chosen to create the element; see for example {@link OMFactory#createOMElement(QName)}.
*
- If an attribute with a namespace is added, but no matching namespace declaration is in scope
* in the element, one is automatically added. See {@link #addAttribute(OMAttribute)} for more
* details.
*
* Thus, creating a new element or adding an attribute preserves the consistency of the object model
* with respect to namespaces. However, Axiom does not enforce namespace well-formedness for all
* possible operations on the object model. E.g. moving an element from one location in the tree to
* another one may cause the object model to loose its namespace well-formedness. In that case it is
* possible that the object model contains elements or attributes with namespaces for which no
* corresponding namespace declarations are in scope.
*
* Fortunately, loosing namespace well-formedness has only very limited impact:
*
* - If namespace well-formedness is lost, the string to {@link QName} resolution for attribute
* values and element content may be inconsistent, i.e. {@link #resolveQName(String)},
* {@link #getTextAsQName()} and {@link OMText#getTextAsQName()} may return incorrect results.
* However, it should be noted that these methods are most relevant for object model instances that
* have been loaded from existing documents or messages. These object models are guaranteed to be
* well-formed with respect to namespaces (unless they have been modified after loading).
*
- During serialization, Axiom will automatically repair any namespace inconsistencies. It will
* add necessary namespace declarations to the output document where they are missing in the object
* model and generate modified namespace declarations where the original ones in the object model
* are inconsistent. It will also omit redundant namespace declarations. Axiom guarantees that in
* the output document, every element and attribute (and {@link OMText} instance with a
* {@link QName} value) will have the same namespace URI as in the object model, thus preserving the
* intended semantics of the document. On the other hand, the namespace prefixes used in the output
* document may differ from the ones in the object model.
*
- More precisely, Axiom will always make sure that any {@link OMElement} or {@link OMAttribute}
* node will keep the namespace URI that has been assigned to the node at creation time, unless the
* namespace is explicitly changed using {@link #setNamespace(OMNamespace)} or
* {@link OMAttribute#setOMNamespace(OMNamespace)}. [TODO: this is currently not entirely true; see
* WSCOMMONS-517]
*
*/
public interface OMElement extends OMNode, OMContainer {
/**
* Returns a filtered list of children - just the elements.
*
* @return Returns an iterator over the child elements.
* @see #getChildren()
* @see #getChildrenWithName(javax.xml.namespace.QName)
*/
Iterator getChildElements();
/**
* Creates a namespace in the current element scope.
*
* @param uri The namespace to declare in the current scope. The caller is expected to
* ensure that the URI is a valid namespace name.
* @param prefix The prefix to associate with the given namespace. The caller is expected to
* ensure that this is a valid XML prefix. If "" is given, first this will check
* for an existing namespace with the same uri. If not found, a prefix will be
* auto-generated.
* @return Returns the created namespace information item.
* @see #declareNamespace(OMNamespace)
* @see #findNamespace(String, String)
* @see #getAllDeclaredNamespaces()
*/
OMNamespace declareNamespace(String uri, String prefix);
/**
* This will declare a default namespace for this element explicitly
*
* @param uri
*/
OMNamespace declareDefaultNamespace(String uri);
/**
* This will retrieve the default namespace of this element, if available. null returned if none
* is found.
*/
OMNamespace getDefaultNamespace();
/**
* Declares a namespace with the element as its scope.
*
* @param namespace The namespace to declare.
* @return Returns the namespace parameter passed.
* @see #declareNamespace(String, String)
* @see #findNamespace(String, String)
* @see #getAllDeclaredNamespaces()
*/
OMNamespace declareNamespace(OMNamespace namespace);
/**
* Finds a namespace with the given uri and prefix, in the scope of the hierarchy.
*
* Searches from the current element and goes up the hiararchy until a match is found. If no
* match is found, returns null.
*
* Either prefix or uri should be null. Results are undefined if both are
* specified.
*
* @param uri The namespace to look for. If this is specified, prefix should be
* null.
* @param prefix The prefix to look for. If this is specified, uri should be null.
* @return Returns the matching namespace declaration, or null if none was found.
* @see #declareNamespace(String, String)
* @see #declareNamespace(OMNamespace)
* @see #getAllDeclaredNamespaces()
*/
OMNamespace findNamespace(String uri, String prefix);
/**
* Checks for a namespace in the context of this element with the given prefix and returns the
* relevant namespace object, if available. If not available, returns null.
*
* @param prefix
*/
OMNamespace findNamespaceURI(String prefix);
/**
* Returns an iterator for all of the namespaces declared on this element.
*
* If you're interested in all namespaces in scope, you need to call this function for all
* parent elements as well. Note that the iterator may be invalidated by any call to either
* declareNamespace function.
*
* @return Returns an iterator over the {@link OMNamespace} items declared on the current
* element.
* @see #findNamespace(String, String)
* @see #declareNamespace(String, String)
* @see #declareNamespace(OMNamespace)
*/
Iterator getAllDeclaredNamespaces() throws OMException;
/**
* Returns a list of OMAttributes.
*
* Note that the iterator returned by this function will be invalidated by any
* addAttribute call.
*
* @return Returns an {@link Iterator} of {@link OMAttribute} items associated with the
* element.
* @see #getAttribute
* @see #addAttribute(OMAttribute)
* @see #addAttribute(String, String, OMNamespace)
*/
Iterator getAllAttributes();
/**
* Returns a named attribute if present.
*
* @param qname the qualified name to search for
* @return Returns an OMAttribute with the given name if found, or null
*/
OMAttribute getAttribute(QName qname);
/**
* Returns a named attribute's value, if present.
*
* @param qname
* the qualified name to search for
* @return The attribute value, or null
if no matching attribute is found.
*/
String getAttributeValue(QName qname);
/**
* Adds an attribute to this element.
*
* If the attribute already has an owner, the attribute is cloned (i.e. its name, value and
* namespace are copied to a new attribute) and the new attribute is added to the element.
* Otherwise the existing instance specified by the attr
parameter is added to
* the element. In both cases the owner of the added attribute is set to be the particular
* OMElement
.
*
* If there is already an attribute with the same name and namespace URI, it will be replaced
* and its owner set to null
.
*
* In the particular case where the attribute specified by attr
is already owned
* by the element, calling this method has no effect.
*
* Attributes are not stored in any particular order. In particular, there is no guarantee
* that the added attribute will be returned as the last item by the iterator produced by
* a subsequent call to {@link #getAllAttributes()}.
*
* If the attribute being added has a namespace, but no corresponding namespace declaration is
* in scope for the element (i.e. declared on the element or one of its ancestors), a new
* namespace declaration is added to the element. Note that both the namespace prefix and URI
* are taken into account when looking for an existing namespace declaration.
*
* @param attr The attribute to add.
* @return The attribute that was added to the element. As described above this may or may
* not be the same as attr
, depending on whether the attribute specified
* by this parameter already has an owner or not.
*/
OMAttribute addAttribute(OMAttribute attr);
/**
* Adds an attribute to this element.
*
* If the element already has an attribute with the same local name and namespace URI, then this
* existing attribute will be removed from the element, i.e. this method will always create a
* new {@link OMAttribute} instance and never update an existing one.
*
* @param localName
* The local name for the attribute.
* @param value
* The string value of the attribute. This function does not check to make sure that
* the given attribute value can be serialized directly as an XML value. The caller
* may, for example, pass a string with the character 0x01.
* @param ns
* The namespace has to be one of the in scope namespace. i.e. the passed namespace
* must be declared in the parent element of this attribute or ancestors of the
* parent element of the attribute.
* @return Returns the added attribute.
*/
OMAttribute addAttribute(String localName, String value, OMNamespace ns);
/**
* Method removeAttribute
*
* @param attr
*/
void removeAttribute(OMAttribute attr);
/**
* Method setBuilder.
*
* @param wrapper
*/
void setBuilder(OMXMLParserWrapper wrapper);
/**
* Sets the first child.
*
* @param node
* @deprecated This method should not be called, un-intentionally. When some one randomly set
* the first child, all the links handling will not happen inside this method. So we
* have moved this method to the less visible interface, OMContainerEx.
*/
void setFirstChild(OMNode node);
/**
* Returns the first child element of the element.
*
* @return Returns the first child element of the element, or null if none was found.
*/
OMElement getFirstElement();
/** @param text */
void setText(String text);
/**
* Set the content of this element to the given QName. If no matching namespace declaration for
* the QName is in scope, then this method will add one.
*
* @param qname
* the QName value
*/
void setText(QName qname);
/**
* Returns the non-empty text children as a string.
*
* This method iterates over all the text children of the element and concatenates
* them to a single string. Only direct children will be considered, i.e. the text
* is not extracted recursively. For example the return value for
* <element>A<child>B</child>C</element> will be AC.
*
* All whitespace will be preserved.
*
* @return A string representing the concatenation of the child text nodes.
* If there are no child text nodes, an empty string is returned.
*/
String getText();
/** OMText can contain its information as a QName as well. This will return the text as a QName */
QName getTextAsQName();
/**
* Returns the local name of the element.
*
* @return Returns the local name of the element.
*/
String getLocalName();
/**
* Method setLocalName
*
* @param localName
*/
void setLocalName(String localName);
/**
* Get the namespace this element is part of.
*
* @return the namespace of this element, or null
if the element has no namespace
*/
OMNamespace getNamespace();
/**
* Get the namespace URI of the element. Note that the contract of this method is identical to
* DOM's {@link org.w3c.dom.Node#getNamespaceURI()} (when called on an
* {@link org.w3c.dom.Element}).
*
* @return the namespace URI of the element or null
if the element has no namespace
*/
String getNamespaceURI();
/**
* Sets the Namespace. This will first search for a namespace in the current scope with the
* given namespace. If no namespace is found with the given details, then it will declare a new
* one. Then that namespace will be assigned to this element.
*
* @param namespace
*/
void setNamespace(OMNamespace namespace);
/**
* This will not search the namespace in the scope nor will declare in the current element, as
* in setNamespace(OMNamespace). This will just assign the given namespace to the element.
*
* @param namespace
*/
void setNamespaceWithNoFindInCurrentScope(OMNamespace namespace);
/**
* Gets the QName of this node.
*
* @return Returns the {@link QName} for the element.
*/
QName getQName();
/**
* This is a convenience method only. This will basically serialize the given OMElement to a
* String but will build the OMTree in the memory
*/
String toString();
/**
* This is a convenience method only. This basically serializes the given OMElement to a String
* but will NOT build the OMTree in the memory. So you are at your own risk of losing
* information.
*/
String toStringWithConsume() throws XMLStreamException;
/**
* Resolves a QName literal in the namespace context defined by this element and produces a
* corresponding {@link QName} object. The implementation uses the algorithm defined by the XML
* Schema specification. In particular, the namespace for an unprefixed QName is the default
* namespace (not the null namespace), i.e. QNames are resolved in the same way as element
* names.
*
* @param qname
* the QName literal to resolve
* @return the {@link QName} object, or null
if the QName can't be resolved, i.e.
* if the prefix is not bound in the namespace context of this element
*/
QName resolveQName(String qname);
/**
* Clones this element. Since both elements are build compleletely, you will lose the differed
* building capability.
*
* @return Returns OMElement.
*/
OMElement cloneOMElement();
void setLineNumber(int lineNumber);
int getLineNumber();
/**
* Serializes the node with caching.
*
* @param output
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serialize(OutputStream output) throws XMLStreamException;
/**
* Serializes the node with caching.
*
* @param writer
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serialize(Writer writer) throws XMLStreamException;
/**
* Serializes the node with caching.
*
* @param output
* @param format
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serialize(OutputStream output, OMOutputFormat format)
throws XMLStreamException;
/**
* Serializes the node with caching.
*
* @param writer
* @param format
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serialize(Writer writer, OMOutputFormat format)
throws XMLStreamException;
/**
* Serializes the node without caching.
*
* @param output
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serializeAndConsume(OutputStream output)
throws XMLStreamException;
/**
* Serializes the node without caching.
*
* @param writer
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serializeAndConsume(Writer writer) throws XMLStreamException;
/**
* Serializes the node without caching.
*
* @param output
* @param format
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serializeAndConsume(OutputStream output, OMOutputFormat format)
throws XMLStreamException;
/**
* Serializes the node without caching.
*
* @param writer
* @param format
* @throws XMLStreamException
*/
// Note: This method is inherited from both OMNode and OMContainer, but it is deprecated in
// OMNode. We redeclare it here to make sure that people don't get a deprecation
// warning when using the method on an OMElement.
void serializeAndConsume(Writer writer, OMOutputFormat format)
throws XMLStreamException;
}