--- old/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/MIMEMessage.java 2015-10-21 14:10:18.000000000 +0200 +++ new/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/MIMEMessage.java 2015-10-21 14:10:18.000000000 +0200 @@ -62,7 +62,10 @@ private final Map partsMap = new HashMap(); /** - * @see MIMEMessage(InputStream, String, MIMEConfig) + * @see #MIMEMessage(InputStream, String, MIMEConfig) + * + * @param in MIME message stream + * @param boundary the separator for parts(pass it without --) */ public MIMEMessage(InputStream in, String boundary) { this(in, boundary, new MIMEConfig()); @@ -131,7 +134,7 @@ * do the validation, the message needs to be parsed. The parsing of the * message is done lazily and is done while reading the bytes of the part. * - * @param contentId Content-ID of the part, expects Content-ID without <, > + * @param contentId Content-ID of the part, expects Content-ID without {@code <, >} * @return attachemnt part */ public MIMEPart getPart(String contentId) { @@ -177,8 +180,8 @@ /** * Closes all parsed {@link com.sun.xml.internal.org.jvnet.mimepull.MIMEPart parts}. * This method is safe to call even if parsing of message failed. - *

- * Does not throw {@link com.sun.xml.internal.org.jvnet.mimepull.MIMEParsingException} if an + * + *

Does not throw {@link com.sun.xml.internal.org.jvnet.mimepull.MIMEParsingException} if an * error occurred during closing a MIME part. The exception (if any) is * still logged. */