Я определяю следующую функцию на моем ДХО
function void embargarMultiplesCuentasJudicial(ArrayList<Cuenta> cuentas, Embargo embargo,BigDecimal montoTotal ,BigDecimal limite) {
//BODY
}
И я получаю эту ошибку:
Unable to resolve type ArrayList<Cuenta> while building function. java.lang.ClassNotFoundException: Unable to find class 'ArrayList<Cuenta>' ]]
Но я импортирую ArrayList и Cuenta сверхуфайл
import modelo.Cuenta;
import modelo.Embargo;
import java.util.ArrayList;