LoDRaV means Law of Demeter: Respect and Violation.
LoDRaV is a simple project divided into two folders: one has the implementations and the other the abstraction and fake data.
The main program contains two examples that demonstrate how to follow or not the The Law of Demeter.
In object-oriented programming there is a recommendation called Law of Demeter or LoD which suggests that a method m of a class A should only call the methods of class A itself, objects accessible through attributes in A, objects passed as arguments to m or objects created within the m.
Read more about LoD on Wikipedia
In short: do not talk to strangers.