IDocumentProvider dp = editor.getDocumentProvider();
IDocument doc = dp.getDocument(editor.getEditorInput());
Formatter formatter = new Formatter(doc);
try {
formatter.replaceAnyTab(8);
} catch (BadLocationException e) {
MessageDialog.openError(shell, e.getClass().getCanonicalName(),
e.getMessage());
}