This rule checks that classes inheriting from classes with the suffix Eto end with the same suffix.

Noncompliant Code Example

    public class TestClass extends AbstractEto {}

Compliant Solution

    public class TestEto extends AbstractEto {}