public class NameChecker
extends Object
18.3.32 styleNameRef
A NCName as specified in [xmlschema-2] that is the name of a referenced style, or an empty value.
In [xmlschema-2] (https://www.w3.org/TR/xmlschema-2/):
NCName represents XML "non-colonized" Names. The ·value space· of NCName is the set of all
strings which ·match·
the NCName production of [Namespaces in XML]. "Non-colonized" equals non qualified.
In [Namespaces in XML] (https://www.w3.org/TR/REC-xml-names/):
[4] NCName ::= Name - (Char* ':' Char*) // An XML Name, minus the ":"
In https://www.w3.org/TR/REC-xml/#NT-Name:
[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] |
[#xF8-#x2FF] |
[#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] |
[#x3001-#xD7FF] |
[#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] |
[#x203F-#x2040]
[5] Name ::= NameStartChar (NameChar)*
- Author:
- Julien Férard