Package org.hippoecm.hst.core.container
Interface PageErrors
-
public interface PageErrors
PageErrorsHolds all error information in a page
- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<HstComponentException>
getAllComponentExceptions()
Returns all component exceptions.Collection<HstComponentException>
getComponentExceptions(HstComponentInfo componentInfo)
Returns collection ofHstComponentException
caused by the specific component.Collection<HstComponentInfo>
getComponentInfos()
Returns collection ofHstComponentInfo
which causes exceptions.boolean
isEmpty()
Returns true if there's no component exceptions.
-
-
-
Method Detail
-
isEmpty
boolean isEmpty()
Returns true if there's no component exceptions.- Returns:
- true if there's no component exceptions.
-
getComponentInfos
Collection<HstComponentInfo> getComponentInfos()
Returns collection ofHstComponentInfo
which causes exceptions.- Returns:
- collection of
HstComponentInfo
which causes exceptions.
-
getComponentExceptions
Collection<HstComponentException> getComponentExceptions(HstComponentInfo componentInfo)
Returns collection ofHstComponentException
caused by the specific component.- Parameters:
componentInfo
-- Returns:
- collection of
HstComponentException
caused by the specific component.
-
getAllComponentExceptions
Collection<HstComponentException> getAllComponentExceptions()
Returns all component exceptions.- Returns:
- all component exceptions.
-
-