< prev index next >

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

Print this page

        

*** 52,62 **** * <pre>{@code * Detail d = sf.getDetail(); * Name name = se.createName("GetLastTradePrice", "WOMBAT", * "http://www.wombat.org/trader"); * d.addDetailEntry(name); ! * Iterator it = d.getDetailEntries(); * }</pre> * * @since 1.6 */ public interface Detail extends SOAPFaultElement { --- 52,62 ---- * <pre>{@code * Detail d = sf.getDetail(); * Name name = se.createName("GetLastTradePrice", "WOMBAT", * "http://www.wombat.org/trader"); * d.addDetailEntry(name); ! * Iterator<DetailEntry> it = d.getDetailEntries(); * }</pre> * * @since 1.6 */ public interface Detail extends SOAPFaultElement {
< prev index next >