Package com.sun.facelets

Examples of com.sun.facelets.FaceletContext


    tag.doStartTag();
    assertSame(bean, attributes.get(AjaxPhaseListener.VIEW_BEAN_PREFIX + "beBean"));
  }
 
  public void testFaceletsTag() throws Exception {
    FaceletContext ctx = new MockFaceletContext(facesContext);
    Map<String, Object> attributes = facesContext.getViewRoot().getAttributes();
   
    Object ajaxBean = new Object();
    TagHandler ajaxTag = setupTagHandler("ajaxAliveBean", ajaxBean, true);
   
View Full Code Here


        tag.doStartTag();
        assertSame(bean, attributes.get(AjaxPhaseListener.VIEW_BEAN_PREFIX + "beBean"));
    }

    public void testFaceletsTag() throws Exception {
        FaceletContext ctx = new MockFaceletContext(facesContext);
        Map<String, Object> attributes = facesContext.getViewRoot().getAttributes();
        Object ajaxBean = new Object();
        TagHandler ajaxTag = setupTagHandler("ajaxAliveBean", ajaxBean, true);

        ajaxTag.apply(ctx, null);
View Full Code Here

TOP

Related Classes of com.sun.facelets.FaceletContext

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.