use of org.eclipse.ltk.internal.core.refactoring.history.RefactoringHistorySerializer in project che by eclipse.
the class RefactoringCorePlugin method start.
public void start(BundleContext context) throws Exception {
super.start(context);
RefactoringContributionManager.getInstance().connect();
final RefactoringHistoryService service = RefactoringHistoryService.getInstance();
service.connect();
fRefactoringHistoryListener = new RefactoringHistorySerializer();
service.addHistoryListener(fRefactoringHistoryListener);
}
Aggregations