Package com.sun.facelets.tag

Examples of com.sun.facelets.tag.TextHandler


  protected void onComponentCreated(FaceletContext context, UIComponent component, UIComponent parent) {
    StringBuffer content = new StringBuffer();
    Iterator iter = findNextByType(TextHandler.class);
    while (iter.hasNext()) {
      TextHandler text = (TextHandler) iter.next();
      content.append(text.getText(context));
    }
    if (component instanceof UIStyle) {
      ((UIStyle) component).setStyle(content.toString());
    }
  }
View Full Code Here

TOP

Related Classes of com.sun.facelets.tag.TextHandler

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.