tags:

views:

79

answers:

1

Documentum sample code is never deeply commented, so my question is:

What does this line mean?

IDfQuery query = DfcUtils.getClientX().getQuery();
+4  A: 

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

David Pierre