I'm sorry, send the wrong patch. >.<
Correct one attached.
--
Fabian Bieker, QA
Netzwert AG, An den Treptowers 1, 12435 Berlin, Germany
Voice: +49.30.5900800-0 Fax: +49.30.5900800-700
http://www.netzwert.ag
*** JLabeledTextField.java Fri Dec 15 16:36:51 2006
--- JLabeledTextField.java.new Fri Dec 15 16:26:02 2006
***************
*** 210,213 ****
--- 210,231 ----
}
}
+ /**
+ * Registers the text to display in a tool tip.
+ * The text displays when the cursor lingers over the component.
+ * @param text the string to display; if the text is null,
+ * the tool tip is turned off for this component
+ */
+ public void setToolTipText(String text) {
+ mTextField.setToolTipText(text);
+ }
+
+ /**
+ * Returns the tooltip string that has been set with setToolTipText
+ * @return the text of the tool tip
+ */
+ public String getToolTipText() {
+ return mTextField.getToolTipText();
+ }
+
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]