// Check that the lexical value of the literal is in the lexical
// space of the literal datatype
if (node.getDatatype().isBuiltIn()) {
if (!node.getDatatype().getBuiltInDatatype()
.isInLexicalSpace(node.getLiteral())) {
profileViolations.add(new LexicalNotInLexicalSpace(
getCurrentOntology(), getCurrentAxiom(), node));
}
}
}