if (child instanceof MatrixNode)
{
if (translateSet || scaleSet || rotationSet)
{
//Cannot supply a matrix child if transformation attributes were provided.
problems.add(new FXGInvalidChildMatrixNodeProblem(getDocumentPath(), child.getStartLine(), child.getStartColumn()));
return;
}
matrix = (MatrixNode)child;
}
else if (child instanceof GradientEntryNode)