--- old/src/java.xml.ws/share/classes/javax/xml/ws/soap/SOAPFaultException.java 2015-07-08 13:25:34.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/soap/SOAPFaultException.java 2015-07-08 13:25:34.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -27,18 +27,18 @@ import javax.xml.soap.SOAPFault; -/** The SOAPFaultException exception represents a +/** The {@code SOAPFaultException} exception represents a * SOAP 1.1 or 1.2 fault. * - *

A SOAPFaultException wraps a SAAJ SOAPFault + *

A {@code SOAPFaultException} wraps a SAAJ {@code SOAPFault} * that manages the SOAP-specific representation of faults. - * The createFault method of - * javax.xml.soap.SOAPFactory may be used to create an instance - * of javax.xml.soap.SOAPFault for use with the - * constructor. SOAPBinding contains an accessor for the - * SOAPFactory used by the binding instance. + * The {@code createFault} method of + * {@code javax.xml.soap.SOAPFactory} may be used to create an instance + * of {@code javax.xml.soap.SOAPFault} for use with the + * constructor. {@code SOAPBinding} contains an accessor for the + * {@code SOAPFactory} used by the binding instance. * - *

Note that the value of getFault is the only part of the + *

Note that the value of {@code getFault} is the only part of the * exception used when searializing a SOAP fault. * *

Refer to the SOAP specification for a complete @@ -55,7 +55,7 @@ private SOAPFault fault; /** Constructor for SOAPFaultException - * @param fault SOAPFault representing the fault + * @param fault {@code SOAPFault} representing the fault * * @see javax.xml.soap.SOAPFactory#createFault **/ @@ -64,9 +64,9 @@ this.fault = fault; } - /** Gets the embedded SOAPFault instance. + /** Gets the embedded {@code SOAPFault} instance. * - * @return javax.xml.soap.SOAPFault SOAP + * @return {@code javax.xml.soap.SOAPFault} SOAP * fault element **/ public javax.xml.soap.SOAPFault getFault() {