For each method, I want to add a space between the method name and the right curly bracket. For example,
public void setName(String name) {
}
I want a space between ) and {. Is it possible to automatically set this in Eclipse or somewhere? It's annoying to add this space every time.


