>>>>> "JAnderson" == JAnderson <[EMAIL PROTECTED]> writes:
JAnderson> When using M-. , is the Tags file supposed to jump to the
JAnderson> place where a class, method, etc. is defined, or does it
JAnderson> simply jump to the first occurrence of the tag in the
JAnderson> Tags file? If the latter, this is not particularly
JAnderson> helpful, when a class is used frequently within a
JAnderson> project. For example, if the Point is on the class
JAnderson> SomeClass in any file and I use M-. , I would like to
JAnderson> jump to the definition in SomeClass.java. Instead, I am
JAnderson> sent to a location in SomeOtherClass.Java where SomeClass
JAnderson> is also referenced.
You could try using the jde-show-class-source (C-cC-vC-y)
which will show the source of the class defined under point (so you if
you stick point on stop of a type declaration you will get what you
want). This also has the advantage that it doesnt need a tags
database, as it uses Java reflection to fully qualify the class
name. It has the disadvantage that it wont do method names and the
like which I think Tags will?
Cheers
Phil