public class Person {
private String name; // hidden from outside code
// Getter: lets others read the name
public String getName() {
return name;
}
// Setter: lets others change the name
public void setName(String newName) {
this.name = newName;
}
}