Setters and Getters are methods used to obtain the value of the field of a class. They're a codig practice that makes you independent of the logic behind that value, because you can return a simple value
public String getName() {
return value;
}
or do something more sophisticated:
public String getName() {
String modValue = new String();
//Lots of code here
return modValue;
}
Should you need to return something else or do something different, the classes interacting with this particular class will still call a setter and a getter without being affected (unless you make a major change like changing the type of the value...).
One classOne = new One();
one.getValue(); //returns the value or executes some logic before. It doesn't matter
//if it changes because the method is the same. Your classes do not
//depend on each other.
The alternative to a getter is... this...
classOne.value;
You access the field directly which is a code smell, a disaster and many adjetives I don't have a thesaurus for. This way if you need to do something to value before returning it (Think of this as if you return a number and you now need to round it... you have to change all your code or round it every time you get it. With a getter you can round it before returning it).
You should consider your design here, because if you want to return a value that's exaclty the same of the value from other class you can consider having an instance of class one into class two and delegating the getter call only if they're related in a way that justifies that. If the objects are not related, you should set that value yourself.
The setters and getters are defined for each class because they're related to each particular context. You cannot define a getter that's invoked or related to another class, unless those classes are related either because one contains the other or because there's some connection between them such as (to give some examples):
- An external agent duplicating values
- An external object shared by both classes
- A common source of data for both classes to handle
- One class is the extension of the other and the second class is
overriding the methods.