Interface AutoLinkResolver.IAutolinkResolverDelegate
-
- All Known Implementing Classes:
AutoLinkResolver.AbstractAutolinkResolverDelegate
- Enclosing class:
- AutoLinkResolver
public static interface AutoLinkResolver.IAutolinkResolverDelegate
Interface to delegate the actual resolving of auto components to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Component
newAutoComponent(String autoId, AutoLinkResolver.PathInfo pathInfo)
Returns a new auto component based on the pathInfo object.
-
-
-
Method Detail
-
newAutoComponent
Component newAutoComponent(String autoId, AutoLinkResolver.PathInfo pathInfo)
Returns a new auto component based on the pathInfo object. The auto component must have the autoId assigned as it's id. Should return null in case the component could not be created as expected and the default resolving should take place.- Parameters:
autoId
- the automatically generated id for the auto componentpathInfo
- the path info object that contains information about the link reference- Returns:
- a new auto component or null in case this method couldn't resolve to a proper auto component
-
-