" panel.getCellFormatter().setAlignment(0, 0, HasHorizontalAlignment.ALIGN_LEFT, HasVerticalAlignment.ALIGN_TOP);",
" }",
"}");
frame.refresh();
assertNoErrors(frame);
final HTMLTableInfo panel = (HTMLTableInfo) frame.getChildrenWidgets().get(0);
//
assertThat(panel.getColumns()).hasSize(1);
assertThat(panel.getRows()).hasSize(2);
ExecutionUtils.run(frame, new RunnableEx() {
public void run() throws Exception {
panel.getColumns().get(0).setAlignment(Alignment.RIGHT);
}
});
assertEditor(
"public class Test implements EntryPoint {",
" public void onModuleLoad() {",