I have a method in my Service class that performs a sleep mode update for any domain object:
update(Object obj)
He called from many classes in my project for different objects. I would like to find all the ways to use this method when it requires a specific domain object. That is, call calls a call that updates my Title object:
serviceClass.update(Title title)
I use IntelliJ as my IDE, and I wonder if there is a way to find all of these usages. Does anyone have an IDEA how to do this?
Thanks a lot in advance, Ronnie
source share