Look for qualified this usages in the same class.

Examples:

    public interface DemoService{
        void f();
    }
    public class DemoServiceImpl implements DemoService {
        @Override
        public void f(){
            System.out.println("hello world");
        }
    }