Examples of OCCatalogObject


Examples of com.ipc.oce.objects.OCCatalogObject

    OCCatalogSelection selection = manager.select();
    selection.next();
    OCCatalogRef ref = selection.getRef();
    OCVariant var = new OCVariant(ref);
    OCCatalogObject ocObj = var.value(OCCatalogObject.class);
    assertTrue(ocObj instanceof OCCatalogObject);

    OCVariant var2 = new OCVariant(ocObj);
    assertTrue(var2.value(OCCatalogRef.class) instanceof OCCatalogRef);
  }
View Full Code Here

Examples of com.ipc.oce.objects.OCCatalogObject

    }
    OCCatalogSelection selection = manager.select();
    StringBuffer sb = new StringBuffer(4096);
    OCXDTOSerializer serializer = app.getXDTOSerializer();
    while(selection.next()) {
      OCCatalogObject object = selection.getObject();
      sb.append(serializer.writeXML(object));
    }
    surroundContainersTag(sb);
    return sb.toString();
  }
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.