// the [ArrayElementType] of the property of type Array that's being set.
if (arrayElementType != null)
{
if (!((ClassDefinition)definition).isInstanceOf(arrayElementType, project))
{
ICompilerProblem problem = new MXMLIncompatibleArrayElementProblem(
childTag, propertyName, arrayElementType, definition.getQualifiedName());
builder.addProblem(problem);
}
}
}