this.scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
this.scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
this.verticalScrollBar.addAdjustmentListener(
new ScrollBarAdjustmentController(this, this.model));
this.addComponentListener(
new JTailSizeController(this, this.model));
this.setLayout(new BorderLayout());
this.add(this.scrollPane, BorderLayout.CENTER);