Reputation: 708
I need to replace a library import from my Java classes in src/main/java
and in src/test/java
how can I search to find which classes use the old library from eclipse?
Example:
I want to search all classes across all my projects which contain the following string:
import de.oio.jpdfunit*
the " * " is wildcard character so I can replace it with:
import de.ga.pdfGenerator
I tried cmd+shift+t and that doesn't help,
Upvotes: 2
Views: 706
Reputation: 529
You can search using File Search which can find even string texts:
Upvotes: 2