Class DifferentPageChecker
- java.lang.Object
-
- org.apache.wicket.core.util.objects.checker.AbstractObjectChecker
-
- org.apache.wicket.core.util.objects.checker.DifferentPageChecker
-
- All Implemented Interfaces:
IObjectChecker
public class DifferentPageChecker extends AbstractObjectChecker
An implementation ofIObjectChecker
that returns a failure result when the checked object is a secondPage
instance in the component tree. The first checked page instance is assumed to be the component tree root. Any other page instance checked by the same checker is a referenced page by a component in the tree.- Since:
- 6.17.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.wicket.core.util.objects.checker.IObjectChecker
IObjectChecker.Result
-
-
Constructor Summary
Constructors Constructor Description DifferentPageChecker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IObjectChecker.Result
doCheck(Object obj)
The implementations should make the specific check on the object.-
Methods inherited from class org.apache.wicket.core.util.objects.checker.AbstractObjectChecker
check, getExclusions
-
-
-
-
Constructor Detail
-
DifferentPageChecker
public DifferentPageChecker()
-
-
Method Detail
-
doCheck
public IObjectChecker.Result doCheck(Object obj)
Description copied from class:AbstractObjectChecker
The implementations should make the specific check on the object.- Overrides:
doCheck
in classAbstractObjectChecker
- Parameters:
obj
- the object to check- Returns:
- the
result
of the specific check
-
-