我知道一個可以防止代碼在Eclipse格式由環繞代碼防止代碼格式化程序在Eclipse中通過熱鍵
// @formatter:off
// my awesome formatted code...
public Set<Person> transformCustomersToPersons(List<Customer> customers){
Set<Person> persons = new HashSet<Person>();
for (Customer customer : customers) {
persons.add(new Person(
customer.getFirstname(),
customer.getLastname(),
customer.getTitle(),
customer.getBirthday(),
customer.getAddress(0).getCity(),
customer.getAddress(0).getStreet(),
customer.getAddress(0).getHousenumber(),
customer.isMan() ? "m" : "w",
customer.getCardNumber())
);
}
return persons;
}
// @formatter:on
但我不希望它手動編寫所有的時間。只需標記代碼即可,按一個熱鍵並禁止格式化代碼。
任何人都知道如何?謝謝!
+1。我不知道這個功能:) – Maroun
這只是Eclipse的方式,讓你知道你應該在這種情況下有一個從客戶的方法;)你應該。 –