Examples of OCMetadataTabularSectionCollection


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

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

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

    }
   
    // create table section
    Element tabSections = doc.createElementNS(ns, "TabularSections");
    root.appendChild(tabSections);
    OCMetadataTabularSectionCollection tabSecCollection = metadata.getTabularSections();
    int tabSecColSZ = tabSecCollection.size();
    for (int z = 0; z < tabSecColSZ; z++) {
      OCTabularSectionMetadataObject tsmO = tabSecCollection.get(z);
      OCMetadataAttributeCollection tsAttrMetadata = tsmO.getAttributes();
      String tabSecName = tsmO.getName();
     
      Element tabSection = doc.createElementNS(ns, "TabularSection");
      tabSection.setAttribute("name", tabSecName);
View Full Code Here

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

   * @return
   * @throws JIException
   */
  public OCMetadataTabularSectionCollection getTabularSections()
      throws JIException {
    return new OCMetadataTabularSectionCollection(get("TabularSections"));
  }
View Full Code Here

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

    return get("Hierarchical").getObjectAsBoolean();
  }
 
  public OCMetadataTabularSectionCollection getTabularSections() throws JIException{
    if (tabularCollection == null) {
      tabularCollection = new OCMetadataTabularSectionCollection(get("TabularSections"));
    }
    return tabularCollection;
  }
View Full Code Here

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

   * @return
   * @throws JIException
   */
  public OCMetadataTabularSectionCollection getTabularSections() throws JIException{
    if (tabularCollection == null) {
      tabularCollection = new OCMetadataTabularSectionCollection(get("TabularSections"));
    }
    return tabularCollection;
  }
View Full Code Here

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

   * @return
   * @throws JIException
   */
  public OCMetadataTabularSectionCollection getTabularSections() throws JIException{
    if (tabularCollection == null) {
      tabularCollection = new OCMetadataTabularSectionCollection(get("TabularSections"));
    }
    return tabularCollection;
  }
View Full Code Here

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

   * @return
   * @throws JIException
   */
  public OCMetadataTabularSectionCollection getTabularSections() throws JIException {
    if (tabularCollection == null) {
      tabularCollection = new OCMetadataTabularSectionCollection(get("TabularSections"));
    }
    return tabularCollection;
  }
View Full Code Here

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

   * @return List<String>
   * @throws JIException
   */
  public synchronized List<String> getTabularSectionsName() throws JIException {
    if (tabularSectionsName == null) {
      OCMetadataTabularSectionCollection tabCollection = getTabularSections();
      tabularSectionsName = new ArrayList<String>();
      for (OCTabularSectionMetadataObject tab : tabCollection) {
        tabularSectionsName.add(tab.getName());
      }
    }
View Full Code Here

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

   * @return
   * @throws JIException
   */
  public OCMetadataTabularSectionCollection getTabularSections()
      throws JIException {
    return new OCMetadataTabularSectionCollection(get("TabularSections"));
  }
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.