qr = find(connection, theDb, xQuery, "", ServerCommand.find_SORT, adjacency, 0, null);
if (qr != null) {
result = new Vector();
for (int i = 0; i < qr.elements; i++) {
Doc doc = getDoc(connection, theDb, qr, i, 0, ServerCommand.load_noHilight);
result.addElement(new Xml_NumDoc(doc.XML(), doc.numDoc));
}
}
} else {
throw new XWException("xQuery must not be null");
}