Examples of UILink


Examples of org.jboss.seam.ui.component.UILink

   }
  
   @Override
   protected void doEncodeBegin(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException
   {
      UILink link = (UILink) component;
      String url = link.getUrl();
      writer.startElement(HTML.ANCHOR_ELEM, link);
      if (url != null && !link.isDisabled())
      {
         writer.writeAttribute(HTML.HREF_ATTR, url, HTML.HREF_ATTR);
      }
      if (link.getId() != null)
      {
         writer.writeAttribute(HTML.ID_ATTR, link.getClientId(context), HTML.ID_ATTR);
      }
      HTML.renderHTMLAttributes(writer, link, HTML.ANCHOR_PASSTHROUGH_ATTRIBUTES);
      if (link.getValue() != null)
      {
         writer.writeText(link.getValue(), null);
      }
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.