Package com.ipc.oce.objects

Examples of com.ipc.oce.objects._OCCommonObject


    Object manager = findManager(managerFullname); // named data object
                            // manager

    // финт ушами
    Method method = manager.getClass().getMethod("getRef", OCUUID.class);
    _OCCommonRef ref = (_OCCommonRef) method.invoke(manager, ocuuid);

    return (T) ref.getObject();
  }
View Full Code Here


  public void findByRef1() throws JIException {
    OCArray removedRefs = app.findMarkedForDeletion();
    System.out.println("Removes size: " + removedRefs.size());
    int index = 1;
    for (OCVariant remRef : removedRefs) {
      _OCCommonRef ref = ((_OCCommonRef)remRef.value());
      System.out.println("\t" + index++ + " " + ref.toString() + " [" +ref.getUUID().toString() + "]");
    }
    OCValueTable table = app.findByRef(removedRefs);
    OCValueTableColumnCollection columns = table.getColumns();
    int colSZ = columns.size();
    System.out.println();
View Full Code Here

   

    ResultSet locRs = executeQuery(selectStat);
    try {
      while (locRs.next()) {
        _OCCommonRef obj = (_OCCommonRef) locRs.getObject(1);
        _OCCommonObject commonObject = obj.getObject();
        boolean objectChanged = false;
        if (commonObject instanceof AttributeBean) {
          AttributeBean aBean = (AttributeBean) commonObject;
          Iterator<String> iter = mappedSet.keySet().iterator();
          while (iter.hasNext()) {
View Full Code Here

TOP

Related Classes of com.ipc.oce.objects._OCCommonObject

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.