public class SomeBaseClass { public void tag_someBaseMethod() { System.out.println("some base method"); } public static void main(String[] args) { new SomeBaseClass().tag_someBaseMethod(); new SomeSubClass().tag_someMethod(); // this does not match correctly... } }