Example #1
0
 private void displayToolTip(String toolTipString) {
   toolTipPopup = new ToolTipPopup(toolTipString, this);
   toolTipPopup.setStyle(toolTipStyle);
   toolTipPopup.setNuxDisplayTime(toolTipDisplayTime);
   toolTipPopup.show();
 }
Example #2
0
 /** Dismisses the Tooltip if it is currently visible */
 public void dismissToolTip() {
   if (toolTipPopup != null) {
     toolTipPopup.dismiss();
     toolTipPopup = null;
   }
 }