< prev index next >

src/java.xml.ws/share/classes/javax/xml/soap/SOAPElement.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 36,47 **** * specification. * <p> * Methods in this interface that are required to return SAAJ specific objects * may "silently" replace nodes in the tree as required to successfully return * objects of the correct type. See {@link #getChildElements()} and ! * {@link <a HREF="package-summary.html#package_description">javax.xml.soap</a>} ! * for details. * * @since 1.6 */ public interface SOAPElement extends Node, org.w3c.dom.Element { --- 36,46 ---- * specification. * <p> * Methods in this interface that are required to return SAAJ specific objects * may "silently" replace nodes in the tree as required to successfully return * objects of the correct type. See {@link #getChildElements()} and ! * {@link javax.xml.soap} for details. * * @since 1.6 */ public interface SOAPElement extends Node, org.w3c.dom.Element {
*** 343,353 **** * @return a {@code QName} with the specified {@code localName} * and {@code prefix}, and with a namespace that is associated * with the {@code prefix} in the context of this * {@code SOAPElement}. This namespace will be the same as * the one that would be returned by ! * <code>{@link #getNamespaceURI(String)}</code> if it were given * {@code prefix} as it's parameter. * * @exception SOAPException if the {@code QName} cannot be created. * * @since 1.6, SAAJ 1.3 --- 342,352 ---- * @return a {@code QName} with the specified {@code localName} * and {@code prefix}, and with a namespace that is associated * with the {@code prefix} in the context of this * {@code SOAPElement}. This namespace will be the same as * the one that would be returned by ! * {@link #getNamespaceURI(String)} if it were given * {@code prefix} as it's parameter. * * @exception SOAPException if the {@code QName} cannot be created. * * @since 1.6, SAAJ 1.3
*** 437,447 **** * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link <a HREF="package-summary.html#package_description">javax.xml.soap</a>} * for more details. * * @return an iterator with the content of this {@code SOAPElement} * object */ --- 436,446 ---- * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link javax.xml.soap} * for more details. * * @return an iterator with the content of this {@code SOAPElement} * object */
*** 459,469 **** * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link <a HREF="package-summary.html#package_description">javax.xml.soap</a>} * for more details. * * @param name a {@code Name} object with the name of the child * elements to be returned * --- 458,468 ---- * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link javax.xml.soap} * for more details. * * @param name a {@code Name} object with the name of the child * elements to be returned *
*** 486,496 **** * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link <a HREF="package-summary.html#package_description">javax.xml.soap</a>} * for more details. * * @param qname a {@code QName} object with the qname of the child * elements to be returned * --- 485,495 ---- * appropriate for the type of this parent node. As a result the calling * application must treat any existing references to these child nodes that * have been obtained through DOM APIs as invalid and either discard them or * refresh them with the values returned by this {@code Iterator}. This * behavior can be avoided by calling the equivalent DOM APIs. See ! * {@link javax.xml.soap} * for more details. * * @param qname a {@code QName} object with the qname of the child * elements to be returned *
< prev index next >