我可以让 Eclipse Helios 在子包导入之间使用空行来组织导入吗?
这属于强迫症程序员的范畴。
我喜欢用空行按包分隔导入。所以:
import java.io.BufferedInputStream;
import java.io.IOException;
import java.sql.SQLException;
...而不是:
import java.io.BufferedInputStream;
import java.io.IOException;
import java.sql.SQLException;
我可以轻松地让 Eclipse 使用其首选项对话框执行后者。如果我事先知道包的内容,我可以让 Eclipse 执行前者,因为 Eclipse 默认在每个导入组之后插入一个空行。
我的问题是:有没有办法告诉 Eclipse 在 sub 包之间自动插入一个空行?
This falls into the obsessive-compulsive programmer bucket.
I have developed a fondness for separating imports by package with blank lines. So:
import java.io.BufferedInputStream;
import java.io.IOException;
import java.sql.SQLException;
...instead of:
import java.io.BufferedInputStream;
import java.io.IOException;
import java.sql.SQLException;
I can easily make Eclipse do the latter using their preferences dialog. And I can make Eclipse do the former if I know in advance what the packages are going to be, since Eclipse inserts a blank line by default after each import group.
My question is: is there any way to tell Eclipse to insert a blank line between sub packages automatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在每个包之间插入空行,则应该在组织导入时使用每个包的分隔字段,例如:
You should use in organize imports separated fields for every packages if you want insert blank line between them like: