我想在Eclipse中添加其他格式化程序,以在格式化(Ctrl + Shift + F)时在与对象声明相同的行中格式化@Autowired注释。
如果当前是
@Autowired
TestService testService;
按Ctrl + Shift + F后,我希望它像
@Autowired TestService testService;
我的项目中已经存在代码格式化程序xml文件。但是我不确定他们如何在其中添加每个格式化程序。以下是许多其他格式化程序中的2种。
<setting value="end_of_line" id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration"/>
<setting value="do not insert" id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case"/>
如何根据需要在此文件中写入其他值?