< prev index next >
src/java.desktop/share/classes/javax/swing/plaf/basic/BasicToolTipUI.java
Print this page
*** 46,57 ****
*/
public class BasicToolTipUI extends ToolTipUI
{
static BasicToolTipUI sharedInstance = new BasicToolTipUI();
/**
! * Global <code>PropertyChangeListener</code> that
! * <code>createPropertyChangeListener</code> returns.
*/
private static PropertyChangeListener sharedPropertyChangedListener;
private PropertyChangeListener propertyChangeListener;
--- 46,57 ----
*/
public class BasicToolTipUI extends ToolTipUI
{
static BasicToolTipUI sharedInstance = new BasicToolTipUI();
/**
! * Global {@code PropertyChangeListener} that
! * {@code createPropertyChangeListener} returns.
*/
private static PropertyChangeListener sharedPropertyChangedListener;
private PropertyChangeListener propertyChangeListener;
*** 220,232 ****
}
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>.
*
* @param c the JToolTip the JComponent has changed on.
*/
private void componentChanged(JComponent c) {
JComponent comp = ((JToolTip)c).getComponent();
--- 220,232 ----
}
return d;
}
/**
! * 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 >