FileDocCategorySizeDatePackage
NMTOKENDatatypeValidator.javaAPI DocApache Xerces 3.0.12088Fri Sep 14 20:33:54 BST 2007org.apache.xerces.impl.dv.dtd

NMTOKENDatatypeValidator

public class NMTOKENDatatypeValidator extends Object implements DatatypeValidator
NMTOKEN datatype validator.
xerces.internal
author
Jeffrey Rodriguez, IBM
author
Sandy Gao, IBM
version
$Id: NMTOKENDatatypeValidator.java 446749 2006-09-15 21:51:23Z mrglavas $

Fields Summary
Constructors Summary
public NMTOKENDatatypeValidator()

    
Methods Summary
public voidvalidate(java.lang.String content, ValidationContext context)
Checks that "content" string is valid NMTOKEN value. If invalid a Datatype validation exception is thrown.

param
content the string value that needs to be validated
param
context the validation context
throws
InvalidDatatypeException if the content is invalid according to the rules for the validators
see
InvalidDatatypeValueException

        if (!XMLChar.isValidNmtoken(content)) {
           throw new InvalidDatatypeValueException("NMTOKENInvalid", new Object[]{content});
       }