* измерения. Если параметр не указан, то отбор не используется.
* @return OCStructure Структура, содержащая значения ресурсов.
* @throws JIException
*/
public OCStructure getResourceValues(Date date, OCStructure selection) throws JIException {
return new OCStructure(callMethodA("Get", new Object[]{
new JIVariant(date),
selection != null ? new JIVariant(ocObject2Dispatch(selection)) : null
})[0]);
}