}
void createPoolTab(ConnectionPoolBindings valueAdded) {
ReadOnlyLongProperty id = this.dashboardPresenter.getId();
String jndiName = valueAdded.getJndiName().get();
ConnectionPool connectionPool = new ConnectionPool(id, valueAdded);
Node view = connectionPool.view();
Tab tab = createTab(view, "Resource: " + jndiName);
this.tabPane.getTabs().add(tab);
}