logo
MDA < Home 

Map Development Area (MDA)

Location: _/_   markup   _/_   xml   _/_   xpath   _/_   xpath-location-step  

Index Browse Edit Visualize Statistics Download Help
 
xpath-location-step
parts:
- XPath Axis [ part ]
- XPath Node Test [ part ]
- XPath Predicates [ part ]
xpath-language-concept
- XPath Set operator, Union
- XPath Location Step
- XPath Comparison Operator
- XPath Axis
- XPath collection
- XPath Location Path
- XPath context
- XPath Node Set
- XPath Predicates
- XPath Data Type
Types:
Comment:
node test: simply something which matches (or not a particular node)
Comment:
some shortcuts: child:: is default axis -- attribute::aaa can be abbreviated as @aaa -- // is /descendent-or-self::node() -- . is self::node() -- .. is parent::node()
Comment:
steps consist of: direction, node test, optional predicates
Comment:
direction: defined by the axis -- child:: down to children -- parent:: to parent, sideways to siblings, ....
Comment:
optional predicates: boolean tests in the context of the node currently considered -- if all tests pass, current node is part of the result