getImportedJadeInterface(infName: String): JadeImportedInterface;
The getImportedJadeInterface method of the Schema class returns a reference to an interface imported as part of an imported package.
The imported interface object has a reference to the exported interface that was exported as part of the exported package. Finally, the exported interface object has a reference to the original instance of the JadeInterface class, as shown in the following code example.
vars impInterface : JadeImportedInterface; expInterface : JadeExportedInterface; origInterface : JadeInterface; begin impInterface := currentSchema.getImportedJadeInterface("MeetingIF"); expInterface := impInterface.exportedInterface; origInterface := expInterface.originalInterface; // Processing of the original instance for the MeetingIF interface end;