带有注释的列中的字段对齐

时间:2018-09-18 21:47:09

标签: intellij-idea

尝试弄清楚如果有注释的列中的字段如何对齐。 没有注释,效果很好。

我想在执行代码重新格式化时实现以下视图:

    @Null
    private UUID   id;

    @NotNull
    private UUID   otherId;

    @NotNull(groups = ...)
    private String title;

但是当我们使用带有注释的字段时,启用了“组声明->对齐列中的字段”的代码重新格式化似乎无法确定这样的组声明,因此收到以下视图:

    @Null
    private UUID id;

    @NotNull
    private UUID otherId;

    @NotNull(groups = ...)
    private String title;

有人知道如何解决吗?

1 个答案:

答案 0 :(得分:0)

IntelliJ格式化程序中没有实现此目的的选项,但是Eclipse Code Formatter插件可以完成工作。

https://plugins.jetbrains.com/plugin/6546-eclipse-code-formatter