return empty;
}
public static void drawTooltip(TooltipProperties tProp) throws ElementIdException {
if (tProp.getId() == null || tProp.getId().length() == 0) {
throw new ElementIdException("No Id provided to draw tooltip for");
}
if (!JsMethods.elementExists(tProp.getId())) {
throw new ElementIdException("id '" + tProp.getId() + "' not found on page. Unable to draw tooltip");
}
JsMethods.drawTooltip(tProp.getId(), tProp.getTitle(), tProp.getText(), tProp.getMy(), tProp.getAt(), tProp.getXOffset(), tProp.getYOffset());
}