Examples of OCConstantMetadataObject


Examples of com.ipc.oce.metadata.objects.OCConstantMetadataObject

   * Предоставляет доступ к объекту описания метаданных константы. Другой путь получения того же значения - через свойство глобального контекста Метаданные. Например: Метаданные.Константы.Валюта.
   * @return
   * @throws JIException
   */
  public OCConstantMetadataObject getMetadata() throws JIException{
    return new OCConstantMetadataObject(callMethodA("Metadata"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCConstantMetadataObject

    super(aDispatch);
  }

  @Override
  public OCConstantMetadataObject get(int i) throws JIException {
    return new OCConstantMetadataObject(super.get(i));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCConstantMetadataObject

    return new OCConstantMetadataObject(super.get(i));
  }

  @Override
  public OCConstantMetadataObject find(String objectName) throws JIException {
    return new OCConstantMetadataObject(super.find(objectName));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCConstantMetadataObject

     
      @Override
      protected OCConstantMetadataObject castToGeneric(JIVariant variant) {
       
        try {
          return new OCConstantMetadataObject(variant);
        } catch (JIException e) {
          throw new RuntimeException(e);
        }
      }
    };
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCConstantMetadataObject

    return OCApp.getInstance(getAssociatedSessionID()).getMetadata().getConstants().find(managerName);
  }

  @Override
  public OCConstantMetadataObject getMetadata() throws JIException {
    return new OCConstantMetadataObject(super.getMetadata());
  }
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.