method getter and setter java code example
Example 1: java get set
class Employ
{
public String name; //name of the employ
public String getName() //Get the name
{
return name;
}
public String setName(String newName) //Set the name
{
this.name = newName;
}
}
Example 2: java getter
public getValue() {
return value;
}