如何设置 Eclipse 代码格式化程序以支持流畅的接口
2022-09-02 05:20:53
我最近开始使用一个使用“流畅接口”的API。我正在努力寻找如何配置Eclipse代码格式化程序以正确支持此功能。
我想得到的是这个:
Foo myFoo = new Foo()
.setThis()
.setThat()
.setTheOther()
.setOneMoreThing();
但我无法点击正确的设置:我最终会得到这样的东西:
Foo myFoo = new Foo().setThis().setThat()
.setTheOther().setOneMoreThing();
远没有那么可读。
有没有人已经解决了这个问题?