如何恢复点击“更易于阅读的代码显示”?

时间:2014-09-10 19:33:00

标签: intellij-idea

我注意到IDEA具有在java中呈现“原始”类型参数的能力,使其更容易阅读。所以,如果我有这个课程

class MarginInfo {
  MarginInfo( boolean top, boolean right, boolean left, boolean bottom ) {

调用它时,实际代码是

new MarginInfo( true, true, true, true );

但它呈现为

new MarginInfo( top: true, right: true, left: true, bottom: true );

点击渲染的代码后,它会重新呈现为实际代码。单击代码后,即使在其他地方进行编辑,它也会保留为实际代码。是否有任何方法可以让IDEA在点击后以“更容易阅读”的格式返回渲染回复? (这个功能也有名字吗?)

0 个答案:

没有答案