--- old/src/java.desktop/share/classes/javax/swing/text/MutableAttributeSet.java 2015-08-11 19:36:02.439331016 +0400 +++ new/src/java.desktop/share/classes/javax/swing/text/MutableAttributeSet.java 2015-08-11 19:36:02.247331024 +0400 @@ -30,8 +30,8 @@ * A generic interface for a mutable collection of unique attributes. * * Implementations will probably want to provide a constructor of the - * form: - * public XXXAttributeSet(ConstAttributeSet source); + * form:
{@code
+ * public XXXAttributeSet(ConstAttributeSet source);}
* */ public interface MutableAttributeSet extends AttributeSet { @@ -55,21 +55,21 @@ public void addAttributes(AttributeSet attributes); /** - * Removes an attribute with the given name. + * Removes an attribute with the given {@code name}. * * @param name the attribute name */ public void removeAttribute(Object name); /** - * Removes an attribute set with the given names. + * Removes an attribute set with the given {@code names}. * * @param names the set of names */ public void removeAttributes(Enumeration names); /** - * Removes a set of attributes with the given name. + * Removes a set of attributes with the given {@code name}. * * @param attributes the set of attributes */