_retVal = new URI[_pathList.size()];
int _arrayCount = 0;
log.fine("Cycling through returned paths, there are " + _pathList.size() + " elements");
for (String _string : _pathList) {
log.fine("Getting a new URI for:" + _string);
_pdURI.replaceDecodedPath(_string);
_retVal[_arrayCount++] = _pdURI.getURI();
log.fine("New URI added:" + _retVal[_arrayCount - 1]);
}
}
} catch (URISyntaxException _exp) {