--- old/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java 2015-08-04 13:15:04.892901069 +0300 +++ new/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java 2015-08-04 13:15:04.532901061 +0300 @@ -28,20 +28,20 @@ import javax.naming.event.NamingListener; /** - * This interface is for handling UnsolicitedNotificationEvent. + * This interface is for handling {@code UnsolicitedNotificationEvent}. * "Unsolicited notification" is defined in * RFC 2251. * It allows the server to send unsolicited notifications to the client. - * A UnsolicitedNotificationListener must: + * A {@code UnsolicitedNotificationListener} must: *
    *
  1. Implement this interface and its method - *
  2. Implement NamingListener.namingExceptionThrown() so + *
  3. Implement {@code NamingListener.namingExceptionThrown()} so * that it will be notified of exceptions thrown while attempting to * collect unsolicited notification events. - *
  4. Register with the context using one of the addNamingListener() - * methods from EventContext or EventDirContext. - * Only the NamingListener argument of these methods are applicable; - * the rest are ignored for a UnsolicitedNotificationListener. + *
  5. Register with the context using one of the {@code addNamingListener()} + * methods from {@code EventContext} or {@code EventDirContext}. + * Only the {@code NamingListener} argument of these methods are applicable; + * the rest are ignored for a {@code UnsolicitedNotificationListener}. * (These arguments might be applicable to the listener if it implements * other listener interfaces). *