All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.axiom.om.OMElement Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 * 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 javax.xml.stream.XMLStreamReader;
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 namespaces.

In contrast with * DOM, this interface exposes namespaces separately from the attributes.

*/ 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 Returns a String containing the attribute value, or null */ String getAttributeValue(QName qname); /** * Adds an attribute to this element. *

*

There is no order implied by added attributes.

* * @param attr The attribute to add. * @return Returns the passed in attribute. */ OMAttribute addAttribute(OMAttribute attr); /** * Adds an attribute to the current element. *

*

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 attributeName The "local name" for the attribute. * @param value The string value of the attribute. * @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 attributeName, String value, OMNamespace ns); /** * Method removeAttribute * * @param attr */ void removeAttribute(OMAttribute attr); /** * Method setBuilder. * * @param wrapper */ void setBuilder(OMXMLParserWrapper wrapper); /** * Returns the builder object. * * @return Returns the builder object used to construct the underlying XML infoset on the fly. */ OMXMLParserWrapper getBuilder(); /** * 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(); /** * Returns the pull parser that will generate the pull events relevant to THIS element. *

*

Caching is on.

* * @return Returns an XMLStreamReader relative to this element. */ XMLStreamReader getXMLStreamReader(); /** * Returns the pull parser that will generate the pull events relevant to THIS element. *

*

Caching is off.

* * @return Returns an XMLStreamReader relative to this element, with no caching. */ XMLStreamReader getXMLStreamReaderWithoutCaching(); /** @param text */ void setText(String text); void setText(QName text); /** * Returns the non-empty text children as a String. * * @return Returns a String representing the concatenation of the child text nodes. */ 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); /** * @return Returns the OMNamespace object associated with this element * @throws OMException */ OMNamespace getNamespace() throws OMException; /** * 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; /** * Turns a prefix:local qname string into a proper QName, evaluating it in the OMElement * context. Unprefixed qnames resolve to the local namespace. * * @param qname prefixed qname string to resolve * @return Returns null for any failure to extract a qname. */ 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(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy