Hi!
I am wrapping a library that have the following method:
but this is seen from the IDE as java.util.list and i cannot work with it.
how can i convert it to the b4a list and use the name items:
thanks!
I am wrapping a library that have the following method:
B4X:
public List<Comprobante.Conceptos.Concepto> getConcepto() {
if (concepto == null) {
concepto = new ArrayList<Comprobante.Conceptos.Concepto>();
}
return this.concepto;
}
how can i convert it to the b4a list and use the name items:
B4X:
public anywheresoftware.b4a.objects.collections.List getItems() {
}
thanks!