I want to import these two classes, both named Query
- one a JDO class, the other a JPA class, to use in different methods in the same class.
import javax.jdo.Query;
import javax.persistence.Query;
Is there a way to globally import both of them at the same time at the top of the file?