this.statisticsPane.add(totalThreadsWaitingView.getView(),1,0);
this.statisticsPane.add(totalThreadsWaitingHighView.getView(),1,1);
}
private void activateMethodStatistics(String ejb) {
MethodsView methodsView
= new MethodsView();
MethodsPresenter methodsPresenter = (MethodsPresenter) methodsView.getPresenter();
methodsPresenter.monitor(this.monitoredApplication, ejb);
methods.getChildren().clear();
final Parent view = methodsView.getView();
AnchorPane.setRightAnchor(view, 0.0);
AnchorPane.setLeftAnchor(view, 0.0);
AnchorPane.setBottomAnchor(view, 0.0);
AnchorPane.setTopAnchor(view, 0.0);
methods.getChildren().add(view);