Should AdvancedSourceLookupDirector look to JavaSourceLookupParticipant before AdvancedSourceLookupParticipant? #406
Unanswered
stephendnicholas
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm experiencing an issue with Ctrl + I inspecting in debug mode, which I think could be a bug, but I wanted to check first and see if anyone has any advice.
I've also raised a discussion thread in the m2e project, as it is related: eclipse-m2e/m2e-core#1713
The setup:
ILaunchConfiguration
, and uses this to launch the maven projectILaunchConfiguration
, I have specified a custom source path, which include an entry for the class I'm attempting to inspectThe symptom I'm seeing is that when I try to inspect the code, with Eclipse's Advanced Source Lookup enabled, I get an error dialog that states:
Whereas with Advanced Source Lookup disabled, it works fine.
I've included some information on the m2e discussion about the flow that the code looks to take, but I think the crux of the matter is a question of whether
AdvancedSourceLookupDirector
should look to theJavaSourceLookupParticipant
before theAdvancedSourceLookupParticipant
?Currently it looks to
AdvancedSourceLookupParticipant
, but I think if it were to look toJavaSourceLookupParticipant
first then theIJavaLaunchConfigurationConstants.ATTR_SOURCE_PATH
on theILaunchConfiguration
would be referred to in preference, prior to any of the advanced lookup containers or resolvers.Hope that makes sense, and please feel free to ask any clarifying questions
Thanks,
Steve
Note:
Beta Was this translation helpful? Give feedback.
All reactions