public static interface DOMSelector.INodeReferenceChecker
Common interface for objects in charge of resolving references in DOM Selector expressions.
These objects will be used in DOM Selectors for determining how references (like %something)
will be resolved. The most common reference checker implementation is
StandardFragmentSignatureNodeReferenceChecker
, typically used
for looking for th:fragment attributes in templates.
Modifier and Type | Method and Description |
---|---|
boolean |
checkReference(Node node,
String referenceValue)
Check whether the node passed as argument matches the specified reference value.
|
boolean checkReference(Node node, String referenceValue)
Check whether the node passed as argument matches the specified reference value.
node
- the node to be checked.referenceValue
- the reference value expected to check.Copyright © 2016 The THYMELEAF team. All rights reserved.