Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » Find what plugin is performing an action(Understanding eclipse platform)
Find what plugin is performing an action [message #1755802] Wed, 08 March 2017 09:58 Go to next message
joe baruch is currently offline joe baruchFriend
Messages: 1
Registered: March 2017
Junior Member
Most platform functionality is implemented in plugins.

I'm trying to figure out what plugin/s is/are responsible for certain actions. In my case specifically, figuring out which ones are responsible for import resolution in java files:

for the line `import org.openqa.selenium.firefox.FirefoxDriver;`, eclipse will give me an error: `the import org.openqa cannot be resolved`, while for the line `import java.util.Iterator` it just knows what we're talking about.

How can I find and dissect those behaviors, to better understand how the resolution works?

My guess is that using maven, and some existing collection of multiple jars, eclipse will look in those to resolve the import. When that fails, eclipse will give the `cannot resolve import` error, and allow me to figure it out through an import search window that doesn't actually find anything...
Re: Find what plugin is performing an action [message #1755860 is a reply to message #1755802] Wed, 08 March 2017 16:54 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33140
Registered: July 2009
Senior Member
I doubt that debugging how JDT implements scoping and classpath lookup (helped by PDE perhaps) is going to be the best way to figure out what's wrong. What have you done to configure the Java project (Plug-in project?) to add the necessary jars (plug-ins) to the classpath? Or in other words, where is this class located and what have you done to add that location to the classpath of the project?

Ed Merks
Professional Support: https://www.macromodeling.com/
Previous Topic:Install Pluginsby ID
Next Topic:Unable to connect to repository Luna
Goto Forum:
  


Current Time: Wed Apr 24 18:36:23 GMT 2024

Powered by FUDForum. Page generated in 0.08555 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top