private Layout layout;
public ManualSqlStatementPageUi(Source source, DatabaseLocation dbLocation, DatabaseInfoProvider infoProvider,
Receiver<ManualSqlStatement> testCallback) {
textArea = new SqlTextArea();
testAction = new TestManualSqlStatementAction(dbLocation, source.getID(), textArea.asStringSupplier());
testAction.setCallback(testCallback);
textArea.installActionShortCut(testAction);
dbObjectsView = createDbObjectsView(source, infoProvider);
}