* @throws ReviewException if part could not be initialized.
*/
public static ReviewEditorView bringViewToTop() throws ReviewException {
IWorkbench workbench = ReviewPlugin.getInstance().getWorkbench();
IWorkbenchPage page = workbench.getActiveWorkbenchWindow().getActivePage();
IViewPart viewPart = page.findView(EDITOR_VIEW_ID);
// if the review view is not showed yet,
if (viewPart == null) {
try {
viewPart = page.showView(EDITOR_VIEW_ID);
}