Examples of OCStructure


Examples of com.ipc.oce.OCStructure

   *            измерения. Если параметр не указан, то отбор не используется.
   * @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]);
  }
View Full Code Here

Examples of com.ipc.oce.OCStructure

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

Examples of com.ipc.oce.OCStructure

   * @return {@link OCStructure} Возвращает структуру, содержащую значения
   *         ресурсов.
   * @throws JIException
   */
  public OCStructure getFirst(Date startDate, OCStructure selection) throws JIException {
    return new OCStructure(callMethodA("GetFirst", new Object[]{
        startDate != null ? new JIVariant(startDate) : null,
        selection != null ? new JIVariant(ocObject2Dispatch(selection)) : null
    })[0]);
  }
View Full Code Here

Examples of com.ipc.oce.OCStructure

   * @return {@link OCStructure} Возвращает структуру, содержащую значения
   *         ресурсов.
   * @throws JIException
   */
  public OCStructure getLast(Date endDate, OCStructure selection) throws JIException {
    return new OCStructure(callMethodA("GetLast", new Object[]{
        endDate != null ? new JIVariant(endDate) : null,
        selection != null ? new JIVariant(ocObject2Dispatch(selection)) : null
    })[0]);
  }
View Full Code Here

Examples of com.ipc.oce.OCStructure

   * Может использоваться в тех случаях, когда необходимо хранить некоторые значения, связанные с объектом, на время выполнения некоторых операций, без изменения объекта. Например, при обработке событий в подписке на события.
   * @return
   * @throws JIException
   */
  public OCStructure getAdditionalProperties() throws JIException{
    return new OCStructure(get("AdditionalProperties"));
  }
View Full Code Here

Examples of com.ipc.oce.OCStructure

   *
   * @return OCStructure
   * @throws JIException
   */
  public OCStructure getAdditionalProperties() throws JIException {
    return new OCStructure(get("AdditionalProperties"));
  }
View Full Code Here

Examples of com.ipc.oce.OCStructure

   *
   * @return OCStructure
   * @throws JIException
   */
  public OCStructure getAdditionalProperties() throws JIException {
    return new OCStructure(get("AdditionalProperties"));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.