this.documentEditorPane = new DocumentEditorPane(this.visualRifEditor);
this.documentEditorPane.setDocumentName(this.documentName);
final JPanel topPanel = new JPanel(new BorderLayout());
topPanel.add(new ScrollPane(this.documentEditorPane.getVisualGraphs().get(0)));
final JPanel bottomPanel = new JPanel(new BorderLayout());
bottomPanel.add(new ScrollPane(new JTextField()));
final JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
splitPane.setContinuousLayout(true);
splitPane.setOneTouchExpandable(true);
splitPane.setResizeWeight(0.8);