From ee658783e738242de69a69e37a1dcdb1cec10840 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Wed, 23 Mar 2011 19:51:02 +0100 Subject: [PATCH] Javadoc update --- .../refactoring/RefactoringActionHandler.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/platform/lang-api/src/com/intellij/refactoring/RefactoringActionHandler.java b/platform/lang-api/src/com/intellij/refactoring/RefactoringActionHandler.java index d75c4e1afe28..43e4ebda2289 100644 --- a/platform/lang-api/src/com/intellij/refactoring/RefactoringActionHandler.java +++ b/platform/lang-api/src/com/intellij/refactoring/RefactoringActionHandler.java @@ -25,10 +25,11 @@ import org.jetbrains.annotations.NotNull; /** * RefactoringActionHandler is an implementation of IDEA refactoring, * with dialogs, UI and all. - * It is what gets invoked when user choses an item from 'Refactoring' menu.
+ * It is what gets invoked when user chooses an item from 'Refactoring' menu.
* * RefactoringActionHandler is a "one-shot" object: you should not * invoke it twice. + * * @see RefactoringActionHandlerFactory */ public interface RefactoringActionHandler { @@ -36,8 +37,9 @@ public interface RefactoringActionHandler { * Invokes refactoring action from editor. The refactoring obtains * all data from editor selection. * - * @param editor editor that refactoring is invoked in - * @param file file should correspond to editor + * @param project the project in which the refactoring is invoked. + * @param editor editor that refactoring is invoked in + * @param file file should correspond to editor * @param dataContext can be null for some but not all of refactoring action handlers * (it is recommended to pass DataManager.getDataContext() instead of null) */ @@ -47,8 +49,8 @@ public interface RefactoringActionHandler { * Invokes refactoring action from elsewhere (not from editor). Some refactorings * do not implement this method. * - * @param project the project in which the refactoring is invoked. - * @param elements list of elements that refactoring should work on. Refactoring-dependent. + * @param project the project in which the refactoring is invoked. + * @param elements list of elements that refactoring should work on. Refactoring-dependent. * @param dataContext can be null for some but not all of refactoring action handlers * (it is recommended to pass DataManager.getDataContext() instead of null) */