See: Description
Interface | Description |
---|---|
IDfClientX |
An interface that provides factory methods and methods to facilitate DFC access through COM.
|
IDfSmartClientX |
Class | Description |
---|---|
DfClientX |
IDfClientX
factory interface. The IDfClientX
interface provides a collection of
methods that return specific instantiated DFC objects.
The following code is the implementation of the IDfClientX.getList()
method:
public IDfList getList() { IDfList retval = new DfList(); return retval; }
Dim clientx As New IDfClientX Dim listObj As IDfList Set listObj = clientx.getList
...Java programmers would obtain a new empty list object interface using a IDfClientX factory method:
IDfClientX clientx = new IDfClientX(); IDfList list = clientx.getList();
...Java programmers could also create the list using the new operator, but using the factory methods is preferred:
IDfList list = new DfList();
Copyright 1994-2023 OpenText Corporation. All rights reserved.