return StringUtils.join(code, "\n");
}
private IMXMLEventSpecifierNode getMXMLEventSpecifierNode(String[] code)
{
IMXMLFileNode fileNode = getMXMLFileNode(code);
IMXMLEventSpecifierNode node = (IMXMLEventSpecifierNode)findFirstDescendantOfType(fileNode, IMXMLEventSpecifierNode.class);
assertThat("getNodeID", node.getNodeID(), is(ASTNodeID.MXMLEventSpecifierID));
assertThat("children", node.getChildCount() == node.getASNodes().length, is(true));
for (int i = 0; i < node.getChildCount(); i++)
{