Uses of Interface
org.w3c.dom.Element
-
Packages that use Element Package Description javax.imageio.metadata A package of the Java Image I/O API dealing with reading and writing metadata.javax.xml.crypto.dom DOM-specific classes for thejavax.xml.cryptopackage.javax.xml.soap Provides the API for creating and building SOAP messages.javax.xml.ws This package contains the core JAX-WS APIs.javax.xml.ws.spi This package defines SPIs for JAX-WS.javax.xml.ws.wsaddressing This package defines APIs related to WS-Addressing.org.w3c.dom Provides the interfaces for the Document Object Model (DOM).org.w3c.dom.ls Provides interfaces for DOM Level 3 Load and Save. -
-
Uses of Element in javax.imageio.metadata
Classes in javax.imageio.metadata that implement Element Modifier and Type Class Description classIIOMetadataNodeA class representing a node in a meta-data tree, which implements theorg.w3c.dom.Elementinterface and additionally allows for the storage of non-textual objects via thegetUserObjectandsetUserObjectmethods. -
Uses of Element in javax.xml.crypto.dom
Methods in javax.xml.crypto.dom that return Element Modifier and Type Method Description ElementDOMCryptoContext. getElementById(String idValue)Returns theElementwith the specified ID attribute value.Methods in javax.xml.crypto.dom that return types with arguments of type Element Modifier and Type Method Description Iterator<Map.Entry<String,Element>>DOMCryptoContext. iterator()Returns a read-only iterator over the set of Id/Element mappings of thisDOMCryptoContext.Methods in javax.xml.crypto.dom with parameters of type Element Modifier and Type Method Description voidDOMCryptoContext. setIdAttributeNS(Element element, String namespaceURI, String localName)Registers the element's attribute specified by the namespace URI and local name to be of type ID. -
Uses of Element in javax.xml.soap
Subinterfaces of Element in javax.xml.soap Modifier and Type Interface Description interfaceDetailA container forDetailEntryobjects.interfaceDetailEntryThe content for aDetailobject, giving details for aSOAPFaultobject.interfaceSOAPBodyAn object that represents the contents of the SOAP body element in a SOAP message.interfaceSOAPBodyElementASOAPBodyElementobject represents the contents in aSOAPBodyobject.interfaceSOAPElementAn object representing an element of a SOAP message that is allowed but not specifically prescribed by a SOAP specification.interfaceSOAPEnvelopeThe container for the SOAPHeader and SOAPBody portions of aSOAPPartobject.interfaceSOAPFaultAn element in theSOAPBodyobject that contains error and/or status information.interfaceSOAPFaultElementA representation of the contents in aSOAPFaultobject.interfaceSOAPHeaderA representation of the SOAP header element.interfaceSOAPHeaderElementAn object representing the contents in the SOAP header part of the SOAP envelope.Methods in javax.xml.soap with parameters of type Element Modifier and Type Method Description SOAPElementSOAPFactory. createElement(Element domElement)Creates aSOAPElementobject from an existing DOMElement. -
Uses of Element in javax.xml.ws
Methods in javax.xml.ws with parameters of type Element Modifier and Type Method Description abstract <T extends EndpointReference>
TEndpoint. getEndpointReference(Class<T> clazz, Element... referenceParameters)Returns theEndpointReferenceassociated with thisEndpointinstance.abstract EndpointReferenceEndpoint. getEndpointReference(Element... referenceParameters)Returns theEndpointReferenceassociated with thisEndpointinstance.<T extends EndpointReference>
TWebServiceContext. getEndpointReference(Class<T> clazz, Element... referenceParameters)Returns theEndpointReferenceassociated with this endpoint.EndpointReferenceWebServiceContext. getEndpointReference(Element... referenceParameters)Returns theEndpointReferencefor this endpoint. -
Uses of Element in javax.xml.ws.spi
Method parameters in javax.xml.ws.spi with type arguments of type Element Modifier and Type Method Description abstract W3CEndpointReferenceProvider. createW3CEndpointReference(String address, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters)Factory method to create aW3CEndpointReference.W3CEndpointReferenceProvider. createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters, List<Element> elements, Map<QName,String> attributes)Factory method to create aW3CEndpointReference. -
Uses of Element in javax.xml.ws.wsaddressing
Methods in javax.xml.ws.wsaddressing with parameters of type Element Modifier and Type Method Description W3CEndpointReferenceBuilderW3CEndpointReferenceBuilder. element(Element element)Adds an extension element to theW3CEndpointReferenceinstance'swsa:EndpointReferenceelement.W3CEndpointReferenceBuilderW3CEndpointReferenceBuilder. metadata(Element metadataElement)Adds themetadataElementto theW3CEndpointReferenceinstance'swsa:Metadataelement.W3CEndpointReferenceBuilderW3CEndpointReferenceBuilder. referenceParameter(Element referenceParameter)Adds thereferenceParameterto theW3CEndpointReferenceinstancewsa:ReferenceParameterselement. -
Uses of Element in org.w3c.dom
Methods in org.w3c.dom that return Element Modifier and Type Method Description ElementDocument. createElement(String tagName)Creates an element of the type specified.ElementDocument. createElementNS(String namespaceURI, String qualifiedName)Creates an element of the given qualified name and namespace URI.ElementDocument. getDocumentElement()This is a convenience attribute that allows direct access to the child node that is the document element of the document.ElementDocument. getElementById(String elementId)Returns theElementthat has an ID attribute with the given value.ElementElementTraversal. getFirstElementChild()Returns a reference to the first child node of the element which is of theElementtype.ElementElementTraversal. getLastElementChild()Returns a reference to the last child node of the element which is of theElementtype.ElementElementTraversal. getNextElementSibling()Returns a reference to the sibling node of the element which most immediately follows the element in document order, and which is of theElementtype.ElementAttr. getOwnerElement()TheElementnode this attribute is attached to ornullif this attribute is not in use.ElementElementTraversal. getPreviousElementSibling()Returns a reference to the sibling node of the element which most immediately precedes the element in document order, and which is of theElementtype. -
Uses of Element in org.w3c.dom.ls
Methods in org.w3c.dom.ls with parameters of type Element Modifier and Type Method Description shortLSParserFilter. startElement(Element elementArg)The parser will call this method after eachElementstart tag has been scanned, but before the remainder of theElementis processed.
-