ExtensionInterface
interface ExtensionInterface
XPath expression translator extension interface.
This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect.
Methods
callable[]
getNodeTranslators()
Returns node translators.
callable[]
getCombinationTranslators()
Returns combination translators.
callable[]
getFunctionTranslators()
Returns function translators.
callable[]
getPseudoClassTranslators()
Returns pseudo-class translators.
callable[]
getAttributeMatchingTranslators()
Returns attribute operation translators.
string
getName()
Returns extension name.
Details
at line line 33
callable[]
getNodeTranslators()
Returns node translators.
These callables will receive the node as first argument and the translator as second argument.
at line line 40
callable[]
getCombinationTranslators()
Returns combination translators.
at line line 47
callable[]
getFunctionTranslators()
Returns function translators.
at line line 54
callable[]
getPseudoClassTranslators()
Returns pseudo-class translators.
at line line 61
callable[]
getAttributeMatchingTranslators()
Returns attribute operation translators.
at line line 68
string
getName()
Returns extension name.