Does anyone know of an Eclipse plug-in or method to get Eclipse to generate getter/setters on one line like this:
public String getAbc() { return abc; }
Instead of
public String getAbc() {
return abc;
}
I'm on Eclipse v. 3.2.2.
Thanks.
|
1
|
Does anyone know of an Eclipse plug-in or method to get Eclipse to generate getter/setters on one line like this:
Instead of
I'm on Eclipse v. 3.2.2. Thanks.
|
||
|
|
|
|
I don't know how to make Eclipse generate them in the format you want, but you could do a search/replace using these regular expressions after the methods are generated: Find:
Replace by:
This expression will transform the generated getters and setters to be one line. Don't worry about running it with a mixture of transformed and newly generated methods; it will work just fine. |
||||||||||
|
|
|
Goto: Preferences > Java > Code Style > Code Templates / Formatter.. |
||
|
|
|
Java code formatting in Eclipse does not differentiate between getters/setters and any other methods in a class. So this cannot be done by built-in eclipse formatting. You will need either to:
|
||
|
|