重新安排Eclipse IDE中的文档

时间:2015-02-25 09:34:55

标签: eclipse refactoring automated-refactoring

我想重新定位params文档,我之前已经为我的代码编写了文档。现在我已经重新排列了我的方法的参数,我希望在我的方法上面写的文档中反映出来。我怎么能这样做,有快捷键吗?我不想手动完成。我的方法太多了。

早期代码和文档

/** Places the spinner on the screen on specified co-ordinates and customized drop down menu.It can be used for various option selection purpose.

 * @param options The list of items the that is to be shown in the spinner's drop down menu.
 * @param xCordinate The start point of the this view along x [To be given in cell number].
 * @param yCordinate The start point of the this view along y [To be given in cell number].
 * @param spinnerTextSize Text size of the text that is displayed on the spinner.
 * @param spinnerTextColorCode The color of the text on the spinner,stored in database.[HTML color codes or Hex codes].
 * @param spinnerWidth The width of the spinner.
 * @param fontSize Text size of the text that is displayed on the spinner's drop down menu.
 * @param fontColorCode The color of the text(stored in database) on the spinner's drop down menu.[HTML color codes or Hex codes].
 * @param dropDownBackgroundColorCode The background color of the spinner's drop down menu,stored in database.[HTML color codes or Hex codes].
 */

public void 微调器( int [] 选项, int xCoordinate, int yCoordinate, final float spinnerTextSize, int spinnerTextColorCode, int spinnerWidth, float fontSize, int fontColorCode, int dropDownBackgroundColorCode);

上述方法中重新定位的参数

public void 微调器( int spinnerId, int xCordinate, int yCordinate, int spinnerWidth, final int spinnerTextSize, float fontSize, int spinnerTextColorCode, int fontColorCode, int < / strong> dropDownBackgroundColorCode, int [] 选项)

1 个答案:

答案 0 :(得分:3)

您可以使用Eclipse的重构功能执行此操作。方法如下:

右键单击要更改的方法。 Refactor -> Change Method Signature...或仅使用Alt-Shift-C。在弹出的菜单中,您可以以任何方式更改方法。在您的情况下,您将需要移动参数。选择一个参数,然后使用UpDown按钮重新排列参数列表。只要参数名称匹配,这也将重新排列文档。

我还想发表一些建议。您可能希望研究伸缩式反模式以及使用Builder模式来解决这个陷阱。