Wednesday 27 January 2016

Java Tutorial : Generate Getter and Setter methods using eclipse


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
Employee.java
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;
    }

}
Click the below link to download the code:
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:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment