Examples of OCReportCollection


Examples of com.ipc.oce.objects.reports.OCReportCollection

   * Используется для доступа к определенным в конфигурации отчетам.
   * @return
   * @throws JIException
   */
  public OCReportCollection getReportCollection() throws JIException {
    return new OCReportCollection(get("Reports"));
  }
View Full Code Here

Examples of com.ipc.oce.objects.reports.OCReportCollection

    }
  }
 
  @Test
  public void enumReportCollectionEnumeration() throws JIException {
    OCReportCollection repCollection = app.getReportCollection();
   
    Enumeration<OCReportManager> enumV = (Enumeration<OCReportManager>) repCollection.iterator();
    while (enumV.hasMoreElements()) {
      System.out.println(enumV.nextElement().toString());
    }
  }
View Full Code Here

Examples of com.ipc.oce.objects.reports.OCReportCollection

    }
  }
 
  @Test
  public void enumReportCollectionIterator() throws JIException {
    OCReportCollection repCollection = app.getReportCollection();
    System.out.println("\nOCReportCollection ====================");
    Iterator<OCReportManager> enumV = repCollection.iterator();
    while (enumV.hasNext()) {
      System.out.println(enumV.next().toString());
    }
  }
View Full Code Here

Examples of com.ipc.oce.objects.reports.OCReportCollection

    }
    return ct;
  }
 
  public OCReportManager getReport(String reportName) throws JIException{
    OCReportCollection collection = new OCReportCollection(app.get("Reports"));
    OCReportManager manager = collection.getReport(reportName);
    return manager;
  }
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.