node.select();
node.performPopupAction("Open");
// Opening the Action Items to see if the selecte Java Class has an Error.
new ActionNoBlock("Window|Action Items", null).performMenu();
TopComponentOperator actionItems = new TopComponentOperator("Action Items");
actionItems.makeComponentVisible();
JTableOperator t = new JTableOperator(actionItems);
int row = t.findCellColumn("Runner.java");
// The following Assert should validate to -1, meaning there is no row containing the String Runner.java
// At the moment this is not the case. A mixed scala-java project works, but displays erros in the ui.
// assertTrue("No Error Runner.java in the Action Itmes found, but should be", row == -1);