// Here we take apart the first tuple, held in the "value" field
// of the PLIterator instance. Also, these interface functions
// require the actual module object and not just its name. So
// we look that up and use it.
Module mod = PLI.getModule(workingModule, null);
Stella_Object instance = PLI.getNthValue(answer.value, 0, mod, null);
String cname = PLI.getNthString(answer.value, 1, mod, null);
int employees = PLI.getNthInteger(answer.value, 2, mod, null);
System.out.println("Returns object " + instance
+ " with name \"" + cname
+ "\" and " + employees + " employees.");