/**
* Sets the tool tip text.
*
* @param text the text (<code>null</code> permitted).
*
* @since 1.0.3
*/
/**
* Sets the tool tip text.
*
* @param text the text (<code>null</code> permitted).
*/
/**
* Sets the tool tip text.
*
* @param text the text (<code>null</code> permitted).
*
* @see #getToolTipText()
*/
public void setToolTipText(String text) {
this.toolTipText = text;
}
/**
* Returns the URL text.
*
* @return The URL text (possibly <code>null</code>).
*
* @since 1.0.3
*/
/**
* Returns the URL text for the entity. Be aware that this text
* may have been generated from user supplied data, so some form of
* filtering should be applied before this "URL" is used in any output.
*
* @return The URL text (possibly <code>null</code>).
*/
/**
* Returns the URL text.
*
* @return The URL text (possibly <code>null</code>).
*
* @see #setURLText(String)
*/
public String getURLText() {
return this.urlText;
}
/**
* Sets the URL text.
*
* @param text the text (<code>null</code> permitted).
*
* @since 1.0.3
*/
/**
* Sets the URL text.
*
* @param text the text (<code>null</code> permitted).
*/
/**
* Sets the URL text.
*
* @param text the text (<code>null</code> permitted).
*
* @see #getURLText()
*/
public void setURLText(String text) {
this.urlText = text;
}
|