Examples of OCSequenceRecordSetCollection


Examples of com.ipc.oce.objects.OCSequenceRecordSetCollection

    System.out.println(" === belong ===");
    OCDocumentManager manager = app.getDocumentManager("ПриемНаРаботуВОрганизацию");
    OCDocumentSelection selection = manager.select();
    selection.next();
   
    OCSequenceRecordSetCollection collection = selection.getObject().getBelongingToSequences();
    System.out.println(collection + " size " + collection.size());
    for (OCSequenceRecordSet set : collection) {
      System.out.println("\t" + set + " size " + set.size());
      for (OCSequenceRecord record : set) {
        System.out.println("\t\t" + record);
      }
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.