Documentum sample code is never deeply commented, so my question is:
What does this line mean?
IDfQuery query = DfcUtils.getClientX().getQuery();
Documentum sample code is never deeply commented, so my question is:
What does this line mean?
IDfQuery query = DfcUtils.getClientX().getQuery();
You can safely replace it in Java with
IDfQuery query = new DfQuery();
That approach with a factory method comes the old Docbasic days which got constrained by what COM can or cannot do