Is there a way to \"inherit\" imports?
Example:
Common enum:
public enum Constant{ ONE, TWO, THREE }
Base clas
imports are just an aid to the compiler to find classes. They are active for a single source file and have no relation whatsoever to Java's OOP mechanisms.
import
So, no, you cannot “inherit” imports