vote up 2 vote down star
1

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

What does this line mean?

IDfQuery query = DfcUtils.getClientX().getQuery();
flag

1 Answer

vote up 4 vote down check

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.