You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Eclipse 2018-12 (4.10) added Code Minings support in Java editor which is supercool feature generating pseudo-line above the type/field/method with reference count and after click it perform search to show those references in Search tab.
The problem is that this counts also stuff from JRE and Dependencies, so with specific field
private ShipmentRepository shipmentRepository;
there is only 1 reference found (it's in my code), but for more generic method
public void add(Shipment shipment)
it founds 67 references (with 66 in spring and tomcat dependent jars and only 1 in my project code).
I am only interested in that 1 reference in my code, but I am not able to restrict Code Minings search to ignore JRE and Dependencies.
I think it will be cool to add this as the config option (?) here.
@4ndrej please create an issue in Eclipse bugzilla and reference it in this issue. My JDT CodeMining project is a POC and I try to move my work step by step in Eclipse JDT. For the moment there are only implementation and references minings in Eclipse JDT.
I don't want to add some new options in this project. So please suggest your idea in Eclipse bugzilla. Thanks!
The Eclipse 2018-12 (4.10) added Code Minings support in Java editor which is supercool feature generating pseudo-line above the type/field/method with reference count and after click it perform search to show those references in Search tab.
The problem is that this counts also stuff from JRE and Dependencies, so with specific field
private ShipmentRepository shipmentRepository;
there is only 1 reference found (it's in my code), but for more generic method
public void add(Shipment shipment)
it founds 67 references (with 66 in spring and tomcat dependent jars and only 1 in my project code).
I am only interested in that 1 reference in my code, but I am not able to restrict Code Minings search to ignore JRE and Dependencies.
I think it will be cool to add this as the config option (?) here.
I asked this question also as how to restrict Eclipse Code Minings search to avoid JRE and Dependencies on stackoverflow.
The text was updated successfully, but these errors were encountered: