Package com.ipc.oce.metadata.collection

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


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

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

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

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

TOP

Related Classes of com.ipc.oce.metadata.collection.OCMetadataResourceCollection

Copyright © 2018 www.massapicom. 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.