* @param documentName - имя документа
* @return OCDocumentManager
* @throws JIException
*/
public OCDocumentManager getDocumentManager(String documentName) throws JIException {
OCDocumentCollection collection = getDocumentCollection();
try {
return collection.getDocument(documentName);
} catch (JIException e) {
getErrorListener().onError(this, e);
throw e;
}
}