jdk/src/java.desktop/share/classes/java/awt/ItemSelectable.java
changeset 35667 ed476aba94de
parent 25859 3317bb8137f4
--- a/jdk/src/java.desktop/share/classes/java/awt/ItemSelectable.java	Mon Jan 11 06:10:32 2016 -0800
+++ b/jdk/src/java.desktop/share/classes/java/awt/ItemSelectable.java	Mon Jan 11 17:51:54 2016 +0300
@@ -37,7 +37,7 @@
 public interface ItemSelectable {
 
     /**
-     * Returns the selected items or <code>null</code> if no
+     * Returns the selected items or {@code null} if no
      * items are selected.
      *
      * @return the list of selected objects, or {@code null}
@@ -47,8 +47,8 @@
     /**
      * Adds a listener to receive item events when the state of an item is
      * changed by the user. Item events are not sent when an item's
-     * state is set programmatically.  If <code>l</code> is
-     * <code>null</code>, no exception is thrown and no action is performed.
+     * state is set programmatically.  If {@code l} is
+     * {@code null}, no exception is thrown and no action is performed.
      *
      * @param    l the listener to receive events
      * @see ItemEvent
@@ -57,7 +57,7 @@
 
     /**
      * Removes an item listener.
-     * If <code>l</code> is <code>null</code>,
+     * If {@code l} is {@code null},
      * no exception is thrown and no action is performed.
      *
      * @param   l the listener being removed