/**
* Hooks text action handler.
*/
private void hookTextActionHandler() {
TextActionHandler textActionHandler = new TextActionHandler(getViewSite().getActionBars());
textActionHandler.addText(this.summaryText);
textActionHandler.addText(this.descriptionText);
textActionHandler.addText(this.annotationText);
textActionHandler.addText(this.revisionText);
textActionHandler.addText(this.teamDescriptionText);
textActionHandler.addText(this.reworkDescriptionText);
getViewSite().getActionBars().setGlobalActionHandler("reviewSave", ReviewEditorViewAction.SAVE);
// RetargetAction action = new RetargetAction();
// getViewSite().getPage().getWorkbenchWindow().getPartService().
// addPartListener(ReviewEditorViewAction.SAVE);
}