LAPI is one of the less intuitive API's I've ever seen. I can get the details of what a folder contains with a simple API call (Java).
LLValue children = new LLValue();
int result = docs.ListObjects(0, parentId, "DTree", null, LAPI_DOCUMENTS.PERM_READ, children);
Using the debugger I can see the data that I want, residing in :
Children.fInstance.fNames
Children.fInstance.fRows
But the set of available LLValue methods has me stumped and the object I want (LLTable) is not visible.
I've been crawling the internet for an example of how to get at this data and can't find one.
Is there a clear example of how to get at the document names and id values from this seemingly useless LLValue object returned by ListObjects?