else if (child instanceof ColorTransformNode)
{
if (alphaSet)
{
//Cannot supply a colorTransform child if alpha attribute was provided.
problems.add(new FXGInvalidChildColorTransformNodeProblem(getDocumentPath(), child.getStartLine(), child.getStartColumn()));
return;
}
colorTransform = (ColorTransformNode)child;
}