If you implement your own PartialViewContextFactory then you can
make sure what happens in your implementation of PartialViewContext.
Hope that helps,
Manfred
On 11/16/2012 8:59 AM, javaone9_at_yahoo.com wrote:
> PartialVisitContext/Impl should be allowed to be extended, but
> PartialViewContextImpl does not use VisitContextFactory to create
> PartialVisitContext.
>
> PartialVisitContext visitContext =
> new PartialVisitContext(context, phaseClientIds, hints);
> PhaseAwareVisitCallback visitCallback =
> new PhaseAwareVisitCallback(ctx, phaseId);
> component.visitTree(visitContext, visitCallback);
>
> We like to replace VisitContextFactoryImpl and create our version of
> PartialVisitContext.
> Thanks. Dave