Sleeper.SECONDS.sleep(1);
final JDialog tableDialog = tth.findDialog("Matrix Data");
Assert.assertTrue("Table dialog not found", tableDialog != null);
final NumberTable table = (NumberTable) tth.findFirstComponent(
NumberTable.class, tableDialog);
Assert.assertTrue("Table not found", table != null);
widget.setUserEnabled(false);
Sleeper.SECONDS.sleep(1);
Assert.assertFalse("Table should not be editable", table.isEditable());
System.out.println("test userEnable true source ro");
widget.setUserEnabled(true);
Sleeper.SECONDS.sleep(1);
Assert.assertFalse("Table should not be editable", table.isEditable());
// clean
widget.stop();
jf1.dispose();
}