Law of Demeter expects to make the loosest coupling between classes.
This implies that 90% of all getters/setters exposing in class must be "deleted" and replaced by "behavior-contained" method. Indeed, it corresponds to "tell, don't ask" philosophy because client is not expected to treat behavior itself through help of poor getter/setter methods. This reduces duplicated code also if the same action is used elsewhere.
This implies huge classes with many many behavioral methods and overuse of delegation if we want to respect Single-Responsibility principle.
On the other hand, visitor pattern definition is :
Visitor lets you define a new operation without changing the classes of the elements on which it operates.
So, at first sight, it seems to be the contrary of Law of Demeter expectations :
One (Visitor) implies class structure to provide getter/setter so that Visitor can modify object's states without touching to class itself.
Other (Demeter) encourages to enclose all behavioral codes directly related to object in the same class.
So my question is :
When can we consider that a class is closed for modification and thus stop adding behavioral methods on it and so prefer to add them in a newly created Visitor with the great risk that client use getters/setters instead of behavioral methods already exposed before in initial class ?
