I created within a same package called Banco
, two classes in Java: ContaSalario
and ContaPoupanca
. When I'm going to import these two classes into my main class, I do:
import Banco.ContaSalario;
import Banco.ContaPoupanca;
Is there any way to import all classes from the same package with a single call? For example:
import Banco.all;