PROBLEM - Eclipse - How to Generate Getters and Setters for member variables

Problem


How to Generate Getter and Setter method for class member variables in Eclipse


Solution


1. Create a member element ( member variable )

2. Right Click -> Source ( or Shift + Alt + s ) -> Generate Getters and Setters

3. It will show the list of member variables and getters and setters method to be created. Select what you want and press Ok. This will create the getter and setter methods at the location where the pointer initially was.

4. Cut and Paste the methods to the desired location.