Package org.apache.myfaces.trinidad.component.visit

Examples of org.apache.myfaces.trinidad.component.visit.VisitContext


    // visit the facets of the stamped columns
    List<UIComponent> stamps = getStamps();
   
    if (!stamps.isEmpty())
    {
      VisitContext columnVisitingContext = new ColumnFacetsOnlyVisitContext(visitContext);
     
      for (UIComponent stamp : stamps)
      {
        if (UIXComponent.visitTree(columnVisitingContext, stamp, callback))
        {
View Full Code Here


  {
    Collection<String> subtreeIds = visitContext.getSubtreeIdsToVisit(this);
 
    // create a special VisitContext that doesn't visit the Facets
    // of column components since they aren't visited on each row
    final VisitContext noColumnFacetContext = new NoColumnFacetsVisitContext(visitContext);

    // runner to use to process the rows
    Runner runner;
   
    if (VisitContext.ALL_IDS.equals(subtreeIds))
View Full Code Here

    else
    {
      // perform an optimized partial visit of the children
      PartialPageContext pprContext = arc.getPartialPageContext();
     
      VisitContext visitContext = pprContext.getVisitContext();
                 
      try
      {
        for (UIComponent currChild : component.getChildren())
        {
View Full Code Here

  {
    Collection<String> subtreeIds = visitContext.getSubtreeIdsToVisit(this);
 
    // create a special VisitContext that doesn't visit the Facets
    // of column components since they aren't visited on each row
    final VisitContext noColumnFacetContext = new NoColumnFacetsVisitContext(visitContext);

    // runner to use to process the rows
    Runner runner;
   
    if (VisitContext.ALL_IDS.equals(subtreeIds))
View Full Code Here

TOP

Related Classes of org.apache.myfaces.trinidad.component.visit.VisitContext

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.