| "elements" attribute holder.
Type for attribute value here is QName.
In reality by XSL spec it should be NameTest :
NameTest ::= QName | Wildcard
Wildcard ::= "*"
| (NCName ":" "*")
| ("*" ":" NCName)
So this type has the same structure as QName ( firstPart:secondPart ),
so QName is appropriate type here.
author: ads |