Examples of OCMetadataResourceCollection


Examples of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

    OCInformationRegisterManager manager = collection.getInformationRegister("АдресныйКлассификатор");
   
    OCInformationRegisterMetadataObject metadata = manager.getMetadata();
    System.out.println("getFullName: " + metadata.getFullName());
   
    OCMetadataResourceCollection resourceCollection = metadata.getResources();
    System.out.println("==== RESOURCES ====");
    for (OCResourceMetadataObject resourceMeta : resourceCollection) {
      System.out.println("\t" + resourceMeta.getName());
    }
    System.out.println("===============================================\n");
View Full Code Here

Examples of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

   *  Коллекция объектов метаданных, описывающих ресурсы данного объекта метаданных.
   * @return
   * @throws JIException
   */
  public OCMetadataResourceCollection getResources() throws JIException {
    return new OCMetadataResourceCollection(get("Resources"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

   * Коллекция объектов метаданных, описывающих ресурсы данного объекта метаданных.
   * @return
   * @throws JIException
   */
  public OCMetadataResourceCollection getResources() throws JIException{
    return new OCMetadataResourceCollection(get("Resources"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

   * Коллекция объектов метаданных, описывающих ресурсы данного объекта метаданных
   * @return
   * @throws JIException
   */
  public OCMetadataResourceCollection getResources() throws JIException{
    return new OCMetadataResourceCollection(get("Resources"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

   * Коллекция объектов метаданных, описывающих ресурсы данного объекта метаданных.
   * @return
   * @throws JIException
   */
  public OCMetadataResourceCollection getResources() throws JIException{
    return new OCMetadataResourceCollection(get("Resources"));
  }
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.