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();