1

I need to search a large code base, and I'd like to get results to searches like:

'Which classes call method X()'
and
'Give me the concrete implementers of interface Y'

The kind of handy stuff you can do in eclipse, but which unfortunately isn't practice for me.

I was thinking of using solr and possibly adding semantic information using BCEL or similar, but it seems like this should exist already?

BigBen
  • 1,162
  • 2
  • 11
  • 22

3 Answers3

1

opengrok is what I was looking for.

alanc
  • 4,102
  • 21
  • 24
BigBen
  • 1,162
  • 2
  • 11
  • 22
0

Take a look on JDepend. I think this is what you are looking for.

AlexR
  • 114,158
  • 16
  • 130
  • 208
0

See this http://classpathhelper.sourceforge.net/ . Works with eclipse well. It might have the stuff you need.

Ender Wiggin
  • 414
  • 1
  • 6
  • 16