有没有办法让 java eclipse 格式化程序不对齐 @param 描述?

Is there a way to make the java eclipse formatter not align the @param descriptions?

我正在尝试更改 Eclipse 格式化程序的设置,使其不对齐参数标记描述的缩进。

这就是我的目标:

/**
 * Creates a new CTScanData object holding the data from the given file path.
 *
 * @param dataFilePath Path to the file containing the CT scan data.
 * @param width Width of the scan data (left to right).
 * @param depth Depth of the scan data (front to back).
 * @param height Height of the scan data (top to bottom).
 */

这就是格式化程序当前正在做的事情:

/**
 * Creates a new CTScanData object holding the data from the given file path.
 *
 * @param dataFilePath Path to the file containing the CT scan data.
 * @param width        Width of the scan data (left to right).
 * @param depth        Depth of the scan data (front to back).
 * @param height       Height of the scan data (top to bottom).
 */

我试过更改几个设置,但没有成功。

  1. 在 Eclipse 格式化程序编辑器中,我禁用了“@param 之后的缩进描述”和“缩进 Javadoc 标记”。
  2. 在导出的XML文件中,我发现org.eclipse.jdt.core.formatter.comment.indent_parameter_description设置为false。我也试过让它成为现实,但没有任何区别。

注意:我在 Visual Studio 代码中使用格式化程序,但我认为与在 Eclipse 中使用它相比应该没有什么区别?每次更改后,我都会重新启动 Visual Studio 代码以确保应用更改。

确保 .settings/org.eclipse.jdt.core.prefs 中包含以下内容:

org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped=false