use of org.pentaho.di.ui.repository.repositoryexplorer.IUISupportController in project pentaho-kettle by pentaho.
the class AbstractRepositoryExplorerUISupport method initControllers.
public void initControllers(Repository rep) throws ControllerInitializationException {
for (String name : controllerNames) {
try {
IUISupportController controller = (IUISupportController) container.getEventHandler(name);
controller.init(rep);
} catch (XulException e) {
throw new ControllerInitializationException(e);
}
}
}
Aggregations