public final class LifecyclePhaseFactory extends Object
This factory recycles completed phases to reduce object creation during the lifecycle.
Modifier and Type | Method and Description |
---|---|
static ApplyModelComponentPhase |
applyModel(Component component,
Object model,
Component parent,
String path,
List<String> refreshPaths)
Creates a new lifecycle phase processing task for applying the model to a component.
|
static ApplyModelComponentPhase |
applyModel(Component component,
Object model,
String path,
List<String> refreshPaths)
Creates a new lifecycle phase processing task for applying the model to a component.
|
static ApplyModelComponentPhase |
applyModel(LifecycleElement element,
Object model,
String path,
List<String> refreshPaths,
Component parent,
FinalizeComponentPhase nextPhase,
Set<String> visitedIds)
Creates a new lifecycle phase processing task for applying the model to a element.
|
static FinalizeComponentPhase |
finalize(Component component,
Object model,
String path,
List<String> refreshPaths)
Creates a new lifecycle phase processing task for finalizing a nested component.
|
static FinalizeComponentPhase |
finalize(LifecycleElement element,
Object model,
String path,
List<String> refreshPaths,
Component parent)
Creates a new lifecycle phase processing task for finalizing a nested component.
|
static InitializeComponentPhase |
initialize(Component component,
Object model,
String path,
List<String> refreshPaths)
Creates a new lifecycle phase processing task for performing initialization on a component.
|
static InitializeComponentPhase |
initialize(LifecycleElement element,
Object model,
String path,
List<String> refreshPaths,
Component parent,
ApplyModelComponentPhase nextPhase)
Creates a new lifecycle phase processing task for performing initialization on a element.
|
static PreProcessElementPhase |
preProcess(LifecycleElement element,
String path)
Creates a new lifecycle phase processing task for pre-processing a lifecycle element.
|
static PreProcessElementPhase |
preProcess(LifecycleElement element,
String path,
Component parent)
Creates a new lifecycle phase processing task for pre-processing a lifecycle element.
|
static RenderComponentPhase |
render(Component component,
Object model,
String path,
List<String> refreshPaths)
Creates a new lifecycle phase processing task for rendering a component.
|
static RenderComponentPhase |
render(FinalizeComponentPhase finalizePhase,
List<String> refreshPaths,
RenderComponentPhase renderParent,
Set<String> pendingChildren)
Creates a new lifecycle phase processing task for rendering a component.
|
public static PreProcessElementPhase preProcess(LifecycleElement element, String path)
element
- The element.path
- Path to the component relative to its parent component.public static PreProcessElementPhase preProcess(LifecycleElement element, String path, Component parent)
element
- The element.path
- Path to the component relative to its parent component.parent
- The parent component.public static InitializeComponentPhase initialize(Component component, Object model, String path, List<String> refreshPaths)
component
- The component.model
- The modelpath
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static InitializeComponentPhase initialize(LifecycleElement element, Object model, String path, List<String> refreshPaths, Component parent, ApplyModelComponentPhase nextPhase)
element
- The elementmodel
- The modelparent
- The parent element.path
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclenextPhase
- The applyModel phase to spawn after the successful completion of the
initialize phase.public static ApplyModelComponentPhase applyModel(Component component, Object model, String path, List<String> refreshPaths)
component
- The component.model
- The modelpath
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static ApplyModelComponentPhase applyModel(Component component, Object model, Component parent, String path, List<String> refreshPaths)
component
- The component.model
- The modelparent
- The component.path
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static ApplyModelComponentPhase applyModel(LifecycleElement element, Object model, String path, List<String> refreshPaths, Component parent, FinalizeComponentPhase nextPhase, Set<String> visitedIds)
element
- The element.model
- The modelparent
- The parent component.path
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclenextPhase
- The applyModel phase to spawn after the successful completion of the
initialize phase.visitedIds
- The set of visited IDs to track while applying model.public static FinalizeComponentPhase finalize(Component component, Object model, String path, List<String> refreshPaths)
component
- The component.model
- The modelpath
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static FinalizeComponentPhase finalize(LifecycleElement element, Object model, String path, List<String> refreshPaths, Component parent)
element
- The component.model
- The modelparent
- The parent component.path
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static RenderComponentPhase render(Component component, Object model, String path, List<String> refreshPaths)
component
- The component to render.model
- The model associated with the component.path
- Path to the component relative to its parent component.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclepublic static RenderComponentPhase render(FinalizeComponentPhase finalizePhase, List<String> refreshPaths, RenderComponentPhase renderParent, Set<String> pendingChildren)
finalizePhase
- The finalize component phase associated with this rendering phase.refreshPaths
- list of paths to run lifecycle on when executing a refresh lifecyclerenderParent
- The rendering phase for the parent of the component associated with this phase.pendingChildren
- The number of child phases to expect to be queued with this phase as
their rendering parent.Copyright © 2005–2014 The Kuali Foundation. All rights reserved.