Package org.jboss.seam.ui.component

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


{
  
   @Override
   protected void doEncodeBegin(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException
   {
      UIStyle style = (UIStyle) component;
     
      startElement(writer, style);

      writer.writeAttribute("id", component.getClientId(context), "id");
     
      if (style.getStyleClass() != null)
      {
         writer.writeAttribute("class", style.getStyleClass(), "styleClass");
      }

      if (style.getStyle() != null)
      {
         writer.writeAttribute("style", style.getStyle(), "style");
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.seam.ui.component.UIStyle

Copyright © 2018 www.massapicom. 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.