Reputation: 36289
I am working on a new Android
project (Java
), and created an Object with a large number of variables. Since I am planning to add getters and setters for all of them, I was wondering: is there a shortcut in Eclipse
for automatically generating the getters and setters in a given class?
Upvotes: 290
Views: 428770
Reputation: 4531
Bring up the context menu (i.e. right click) in the source code window of the desired class. Then select the Source
submenu; from that menu selecting Generate Getters and Setters...
will cause a wizard window to appear.
Source -> Generate Getters and Setters...
Select the variables you wish to create getters and setters for and click OK
.
Upvotes: 415
Reputation: 186
For All variable ALT+SHIFT+S Then R and for select all Press ALT+A
For Single variable Point cursor on the variable then press CTRL+1 and go for the second option from suggestions
Upvotes: 7
Reputation: 2715
Use Project Lombok or better Kotlin for your Pojos.
(Also, to add Kotlin to your resume ;) )
This :
public class BaseVO {
protected Long id;
@Override
public boolean equals(Object obj) {
if (obj == null || id == null)
return false;
if (obj instanceof BaseVO)
return ((BaseVO) obj).getId().equals(id);
return false;
}
@Override
public int hashCode() {
return id == null ? null : id.hashCode();
}
// getter setter here
}
public class Subclass extends BaseVO {
protected String name;
protected String category;
// getter setter here
}
would become this :
open class BaseVO(var id: Long? = null) {
override fun hashCode(): Int {
if (id != null)
return id.hashCode()
return super.hashCode()
}
override fun equals(other: Any?): Boolean {
if (id == null || other == null || other !is BaseVO)
return false
return id.hashCode() == other.id?.hashCode()
}
}
@Suppress("unused")
class Subclass(
var name: String? = null,
var category: String? = null
) : BaseVO()
Or use Kotlin's "data" classes. You end up writing even fewer lines of code.
Upvotes: -1
Reputation: 597096
Right click -> Source -> Generate setters and getters
But to make it even more convenient, I always map this to ALT+SHIFT+G from Windows -> Preferences -> General -> Keys
Upvotes: 70
Reputation: 1293
It opens a popup to select the fields for which getter/setter methods to be generated. Select the fields and click on "Generate" button.
Upvotes: 1
Reputation: 1075
Ways to Generate Getters & Setters -
1) Press Alt+Shift+S, then R
2) Right click -> Source -> Generate Getters & Setters
3) Go to Source menu -> Generate Getters & Setters
4) Go to Windows menu -> Preferences -> General -> Keys (Write Generate Getters & Setters on text field)
5) Click on error bulb of the field -> create getters & setters ...
6) Press Ctrl+3 and write getters & setters on text field then select option Generate Getters & Setters
if Mac OS press Alt+cmd+S then select Getters & Setters
Upvotes: 33
Reputation: 3601
There is an open source jar available know as Lombok , you just add jar and then annotate your POJO with @Getter & @Setter it will create getters and setters automatically.
Apart from this we can use other features like @ToString ,@EqualsAndHashCode and pretty other cool stuff which removes vanilla code from your application
Upvotes: 4
Reputation: 31
**In Eclipse Ide
for generating both setters and getters -> alt+shift+s+r then Alt A then click on ok;
for generating only getters ->alt+shift+s+r then press g then click on ok button;
for generating only setters ->alt+shift+s+r then press l then click on ok button;**
Upvotes: 3
Reputation: 594
I prefer to create the private field first
private String field;
Eclipse will auto highlight the variable, by positioning cursor over your new variable, press Ctrl + 1. It will then give you the menu to Create getter and setter.
I press Ctrl + 1 because it is a bit more intelligent about what I think you want next.
Upvotes: 8
Reputation: 1597
All the other answers are just focus on the IDE level, these are not the most effective and elegant way to generate getters and setters. If you have tens of attributes, the relevant getters and setters methods will make your class code very verbose.
The best way I ever used to generate getters and setters automatically is using project lombok annotations in your java project, lombok.jar will generate getter and setter method when you compile java code.
You just focus on class attributes/variables naming and definition, lombok will do the rest. This is easy to maintain your code.
For example, if you want to add getter and setter method for age
variable, you just add two lombok annotations:
@Getter @Setter
public int age = 10;
This is equal to code like that:
private int age = 10;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
You can find more details about lombok here: Project Lombok
Upvotes: 57
Reputation: 4067
1) Go to Windows->Preferences->General->Keys
2) Select the command
"Generate Getters and Setters"
3) In the Binding
, press the shortcut to like to use (like Alt+Shift+G)
4) Click apply and you are good to go
Upvotes: 2
Reputation: 13910
Right click on the property you want to generate the getter and setters for and choose
Source -> Generate Getters and Setters...
Upvotes: 2
Reputation: 8387
On Mac OS it's Alt+Cmd+S
then select "...Getters and Setters"
Upvotes: 8
Reputation: 67
Press Alt+Shift+S+R... and then only select which all fields you have to generate Getters or Setters or both
Upvotes: 5
Reputation: 5015
In Eclipse Juno, by default, ALT+SHIFT+S,R opens the getter/setter dialog box. Note you have to press all 4 keys.
Upvotes: 81
Reputation: 3701
Right click-> generate getters and setters does the job well but if you want to create a keyboard shortcut in eclipse in windows, you can follow the following steps:
Hope this helps!
Upvotes: 11
Reputation: 4359
Yes. Right-click on code and you see a menu pop up; there "Source", "Generate Getters and Setters" and next to it you can see the shortcut, which is Alt+Shift+S and R on my system.
Similarly you can navigate to other submenus in that main menu, by typing the appropriate shortcut you go straight the submenu instead of main context menu, and can then either pick from menu or type another letter to pick from the list.
Upvotes: 8
Reputation: 141638
Sure.
Use Generate Getters and Setters from the Source menu or the context menu on a selected field or type, or a text selection in a type to open the dialog. The Generate Getters and Setters dialog shows getters and setters for all fields of the selected type. The methods are grouped by the type's fields.
Take a look at the help documentation for more information.
Upvotes: 9