I have a java project which uses apache poi jars.
In eclipse referenced libraries two versions of poi jar is available. poi3.5 and poi3.7.
In java code im using
import org.apache.poi.hssf.usermodel.HSSFRow;
In eclipse how to know which version of the jar file it will refer. IF there are two versions of same jar file available in class path, which one will it take?
Edit:-
In eclipse i had seen someone using a keyboard shortcut over that import statements to show the correct jar. Any one knows what that shortcut is?