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 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.