< prev index next >
src/java.desktop/share/classes/javax/swing/plaf/basic/BasicToolTipUI.java
Print this page
@@ -46,12 +46,12 @@
*/
public class BasicToolTipUI extends ToolTipUI
{
static BasicToolTipUI sharedInstance = new BasicToolTipUI();
/**
- * Global <code>PropertyChangeListener</code> that
- * <code>createPropertyChangeListener</code> returns.
+ * Global {@code PropertyChangeListener} that
+ * {@code createPropertyChangeListener} returns.
*/
private static PropertyChangeListener sharedPropertyChangedListener;
private PropertyChangeListener propertyChangeListener;
@@ -220,13 +220,13 @@
}
return d;
}
/**
- * Invoked when the <code>JCompoment</code> associated with the
- * <code>JToolTip</code> has changed, or at initialization time. This
- * should update any state dependant upon the <code>JComponent</code>.
+ * Invoked when the {@code JCompoment} associated with the
+ * {@code JToolTip} has changed, or at initialization time. This
+ * should update any state dependant upon the {@code JComponent}.
*
* @param c the JToolTip the JComponent has changed on.
*/
private void componentChanged(JComponent c) {
JComponent comp = ((JToolTip)c).getComponent();
< prev index next >