i have problem by storing user defined matlab class objects in java collection.
col = java.util.ArrayList()
col.add(cFuture('es'))
??? No method 'add' with matching signature found for class 'java.util.ArrayList'.
This method takes java.lang.Object as argument. I try to add matlab handle object.
Is it possible to cast matlab handle object to java.lang.Object? Or some other way to fill java collection with matlab handle classes?
Thanks joe