Get the element that this property is associated with.
@return The element associated with this property (i.e. {@link Vertex}, {@link Edge}, or {@link VertexProperty}).
Creates an LPDMODOMElement with the given name and namespace.
@param name the element's name
@param namespace the element's namespace
@return the LPDMODOMElement
Begins a new element as a child of the current element. The new element becomes the current element. The new Element is returned and can be directly manipulated (possibly at a later date). Optionally, attributes for the new element can be specified directly.
@param name the name of the element to create
@param attributes an even number of values, alternating names and values
@return the new DOM Element node
@see #attributes(Object[])
Begins a new element as a child of the current element. The new element becomes the current element. The new Element is returned and can be directly manipulated (possibly at a later date). Optionally, attributes for the new element can be specified directly.
@param name the name of the element to create
@param attributes an even number of values, alternating names and values
@return the new DOM Element node
@see #attributes(Object[])
This will create a new Element with the supplied (local) name, and define the {@link org.jdom.Namespace} to be used.
@param name String name of element.
@param namespace Namespace to put element in.
Generate complete element with text content.
@param index namespace URI index number
@param name element name
@param value text element content
@return this context (to allow chained calls)
@throws JiBXException on any error (possibly wrapping other exception)
if (!wrapped.element().equals(ele.getName().getLocalPart()))
{
throw new JAXBUnmarshalException("Collection wrapping failed, expected root element name of " + wrapped.element() + " got " + ele.getName().getLocalPart());
}
if (!wrapped.namespace().equals(ele.getName().getNamespaceURI()))
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.