Searched defs:tipText (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJToolTip.java77 String tipText; field in class:JToolTip
119 * The string <code>tipText</code> may be <code>null</code>.
121 * @param tipText the <code>String</code> to display
127 public void setTipText(String tipText) { argument
128 String oldValue = this.tipText;
129 this.tipText = tipText;
130 firePropertyChange("tiptext", oldValue, tipText);
132 if (!Objects.equals(oldValue, tipText)) {
145 return tipText;
[all...]

Completed in 84 milliseconds