Package org.apache.wicket.markup
Interface ComponentTag.IAutoComponentFactory
-
- Enclosing class:
- ComponentTag
public static interface ComponentTag.IAutoComponentFactory
Factory that creates component during markup root container's initialization. These components get queued, which allows other components to be dequeued under these auto components.- Author:
- igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Component
newComponent(MarkupContainer container, ComponentTag tag)
Creates a new instance of auto component to be queued
-
-
-
Method Detail
-
newComponent
Component newComponent(MarkupContainer container, ComponentTag tag)
Creates a new instance of auto component to be queued- Parameters:
container
- The component that will become a parent of the newly created auto componenttag
- The markup element for the newly created auto component
-
-