Resource Change Plugin for eclipse
问题 I created an RCP application which detects resource change in its own view by extending CommonNavigator . public abstract class NavigatorView extends CommonNavigator implements IResourceChangeListener { public void createPartControl(Composite parent) { super.createPartControl(parent); hookResourceChangeCommand(); // my resource tracking function. } } But now I need to create a plugin for this which detects resource change in project explorer in eclipse itself. I cannot create a view now and I