10
我最近開始使用使用「fluent interface」的API工作。我正在努力尋找如何配置Eclipse代碼格式化器來正確支持這一點。如何設置Eclipse代碼格式化程序以支持流暢的界面
我想是這樣的:
Foo myFoo = new Foo()
.setThis()
.setThat()
.setTheOther()
.setOneMoreThing();
,但我不能打在右側設置:我結束了這樣的事情:
Foo myFoo = new Foo().setThis().setThat()
.setTheOther().setOneMoreThing();
這是遠不及可讀。
有沒有人已經解決了這個問題?
奈斯利縮進對氧的工作,謝謝非常 – Ivan