if (FXG_NAME_ATTRIBUTE.equals(name))
{
this.name = DOMParserHelper.parseIdentifier(this, name, value, this.name, problems);
if (((GraphicNode)this.getDocumentNode()).reservedNodes.containsKey(value))
{
problems.add(new FXGInvalidDefinitionNameProblem(getDocumentPath(), getStartLine(), getStartColumn(), value));
return;
}
}
else
{