如何使用Eclipse JDT来缩进代码?

时间:2014-03-30 15:42:50

标签: eclipse eclipse-plugin eclipse-jdt

我有很多方法代码存储在数据库中。它们在每行的左侧都有标签/空格,如下所示。因为它们是使用JDT ASTParser提取的。

enter image description here

我想向左移一个单位,这将使代码如下所示。它删除左侧的空格,但仍然正确缩进方法内的代码。

enter image description here

我们可以通过“shift + tab”在eclipse中做到这一点,但是如何使用eclipse做到这一点。

1 个答案:

答案 0 :(得分:0)

使用org.eclipse.jdt.core.formatter.IndentManipulation查询/修改特定代码段的缩进。希望您不必使用AST解析代码。