String tip = (String) component.getAttributes().get(TobagoConstants.ATTR_TIP);
if (tip != null) {
writer.writeAttribute(HtmlConstants.TITLE, tip, true);
}
if (TobagoConfig.getInstance(facesContext).isAjaxEnabled()) {
writer.writeJavascript("Tobago.addAjaxComponent(\"" + clientId + "\")");
Integer frequency = null;
UIComponent facetReload = component.getFacet(FACET_RELOAD);
if (facetReload != null && facetReload instanceof UIReload && facetReload.isRendered()) {
UIReload update = (UIReload) facetReload;
frequency = update.getFrequency();