/**
* Creates page 0 of the multi-page editor, which contains a text editor.
*/
private void createSourcePage () {
try {
editor = new CSVTextEditor(model.getCustomDelimiter());
addPage(editor, getEditorInput());
setPageText(indexSRC, "CSV Source");
} catch (PartInitException e) {
ErrorDialog.openError(getSite().getShell(), "Error creating nested text editor", null, e.getStatus());
}