Click here to watch in Youtube :
https://www.youtube.com/watch?v=IgaROa01QE8&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Generate Getter and Setter methods using eclipse |
Java Tutorial : Generate Getter and Setter methods using eclipse |
Java Tutorial : Generate Getter and Setter methods using eclipse |
Java Tutorial : Generate Getter and Setter methods using eclipse |
public class Employee { private String name; private int age; private int salary; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public int getSalary() { return salary; } public void setSalary(int salary) { this.salary = salary; } }
https://sites.google.com/site/javaee4321/java/GenerationDemo_Eclipse_Getter_Setter_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/GenerationDemo_Eclipse_Getter_Setter_App/GenerationDemo
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/527ec09d8e1fd3cdfc42e1a5df2ff8d97e615036/BasicJava/GenerationDemo_Eclipse_Getter_Setter_App/GenerationDemo/?at=master
See also:
No comments:
Post a Comment