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.
|
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.
| |||
|
feedback
|
|
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. | |||||||||||||||
feedback
|
|
| |||
|
feedback
|
|
You can use fast code plug-in to generate this kind of getter setters. The details are given here : http://fast-code.sourceforge.net/getter-setter.html. | |||
|
feedback
|
|
Goto: Preferences > Java > Code Style > Code Templates / Formatter.. | |||
feedback
|
|
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:
| |||
|
feedback
|