< prev index next >
src/java.desktop/share/classes/javax/swing/colorchooser/DefaultSwatchChooserPanel.java
Print this page
@@ -44,11 +44,11 @@
* Serialized objects of this class will not be compatible with
* future Swing releases. The current serialization support is
* appropriate for short term storage or RMI between applications running
* the same version of Swing. As of 1.4, support for long term storage
* of all JavaBeans™
- * has been added to the <code>java.beans</code> package.
+ * has been added to the {@code java.beans} package.
* Please see {@link java.beans.XMLEncoder}.
*
* @author Steve Wilson
*/
@SuppressWarnings("serial") // Same-version serialization only
@@ -70,21 +70,21 @@
return UIManager.getString("ColorChooser.swatchesNameText", getLocale());
}
/**
* Provides a hint to the look and feel as to the
- * <code>KeyEvent.VK</code> constant that can be used as a mnemonic to
+ * {@code KeyEvent.VK} constant that can be used as a mnemonic to
* access the panel. A return value <= 0 indicates there is no mnemonic.
* <p>
* The return value here is a hint, it is ultimately up to the look
* and feel to honor the return value in some meaningful way.
* <p>
* This implementation looks up the value from the default
- * <code>ColorChooser.swatchesMnemonic</code>, or if it
- * isn't available (or not an <code>Integer</code>) returns -1.
- * The lookup for the default is done through the <code>UIManager</code>:
- * <code>UIManager.get("ColorChooser.swatchesMnemonic");</code>.
+ * {@code ColorChooser.swatchesMnemonic}, or if it
+ * isn't available (or not an {@code Integer}) returns -1.
+ * The lookup for the default is done through the {@code UIManager}:
+ * {@code UIManager.get("ColorChooser.swatchesMnemonic");}.
*
* @return KeyEvent.VK constant identifying the mnemonic; <= 0 for no
* mnemonic
* @see #getDisplayedMnemonicIndex
* @since 1.4
@@ -93,26 +93,26 @@
return getInt("ColorChooser.swatchesMnemonic", -1);
}
/**
* Provides a hint to the look and feel as to the index of the character in
- * <code>getDisplayName</code> that should be visually identified as the
+ * {@code getDisplayName} that should be visually identified as the
* mnemonic. The look and feel should only use this if
- * <code>getMnemonic</code> returns a value > 0.
+ * {@code getMnemonic} returns a value > 0.
* <p>
* The return value here is a hint, it is ultimately up to the look
* and feel to honor the return value in some meaningful way. For example,
* a look and feel may wish to render each
- * <code>AbstractColorChooserPanel</code> in a <code>JTabbedPane</code>,
+ * {@code AbstractColorChooserPanel} in a {@code JTabbedPane},
* and further use this return value to underline a character in
- * the <code>getDisplayName</code>.
+ * the {@code getDisplayName}.
* <p>
* This implementation looks up the value from the default
- * <code>ColorChooser.rgbDisplayedMnemonicIndex</code>, or if it
- * isn't available (or not an <code>Integer</code>) returns -1.
- * The lookup for the default is done through the <code>UIManager</code>:
- * <code>UIManager.get("ColorChooser.swatchesDisplayedMnemonicIndex");</code>.
+ * {@code ColorChooser.rgbDisplayedMnemonicIndex}, or if it
+ * isn't available (or not an {@code Integer}) returns -1.
+ * The lookup for the default is done through the {@code UIManager}:
+ * {@code UIManager.get("ColorChooser.swatchesDisplayedMnemonicIndex");}.
*
* @return Character index to render mnemonic for; -1 to provide no
* visual identifier for this panel.
* @see #getMnemonic
* @since 1.4
< prev index next >