我想在以下格式中实现三元 if 运算符Eclipse 4.2 (Juno)
:
String value = cond1 ? val1 :
cond2 ? val2 :
cond3 ? val3 :
raise(new IllegalStateException("One of the conditions should be true"));
但是在努力进行配置之后,Preferences -> Formatter -> Edit profile -> Line wrapping -> Conditionals
我无法实现类似的目标。
Eclipse 要么这样做:
String value = cond1 ? val1 :
cond2 ? val2 :
cond3 ? val3 :
raise(new IllegalStateException("One of the conditions should be true"));
或这个:
String value = cond1 ? val1 :
cond2 ? val2 :
cond3 ? val3 :
raise(new IllegalStateException("One of the conditions should be true"));
我是否遗漏了什么,或者至少在这种情况下无法禁用换行或缩进?
是否有可能实现类似的东西Eclipse 4.3 (Kepler)
?
有没有像样的 Eclipse 格式化插件来解决我的问题?
提前致谢