我最近开始使用一个使用“流利界面”的 API。我正在努力寻找如何配置 Eclipse 代码格式化程序以正确支持这一点。
我想要得到的是:
Foo myFoo = new Foo()
.setThis()
.setThat()
.setTheOther()
.setOneMoreThing();
但我无法找到正确的设置:我最终得到了这样的结果:
Foo myFoo = new Foo().setThis().setThat()
.setTheOther().setOneMoreThing();
这远没有可读性。
有没有人已经解决了这个问题?