< prev index next >

src/java.desktop/share/classes/javax/swing/DropMode.java

Print this page

        

@@ -76,28 +76,28 @@
      * data. This is useful for components that manage tabular data.
      */
     INSERT_COLS,
 
     /**
-     * This mode is a combination of <code>ON</code>
-     * and <code>INSERT</code>, specifying that data can be
+     * This mode is a combination of {@code ON}
+     * and {@code INSERT}, specifying that data can be
      * dropped on existing items, or in insert locations
-     * as specified by <code>INSERT</code>.
+     * as specified by {@code INSERT}.
      */
     ON_OR_INSERT,
 
     /**
-     * This mode is a combination of <code>ON</code>
-     * and <code>INSERT_ROWS</code>, specifying that data can be
+     * This mode is a combination of {@code ON}
+     * and {@code INSERT_ROWS}, specifying that data can be
      * dropped on existing items, or as insert rows
-     * as specified by <code>INSERT_ROWS</code>.
+     * as specified by {@code INSERT_ROWS}.
      */
     ON_OR_INSERT_ROWS,
 
     /**
-     * This mode is a combination of <code>ON</code>
-     * and <code>INSERT_COLS</code>, specifying that data can be
+     * This mode is a combination of {@code ON}
+     * and {@code INSERT_COLS}, specifying that data can be
      * dropped on existing items, or as insert columns
-     * as specified by <code>INSERT_COLS</code>.
+     * as specified by {@code INSERT_COLS}.
      */
     ON_OR_INSERT_COLS
 }
< prev index next >