import { IPSAppDEListExplorerView } from './ipsapp-delist-explorer-view'; import { PSAppDESideBarExplorerViewImpl } from './psapp-deside-bar-explorer-view-impl'; export class PSAppDEListExplorerViewImpl extends PSAppDESideBarExplorerViewImpl implements IPSAppDEListExplorerView { get cls(): string { return 'PSAppDEListExplorerViewImpl'; } instanceof(cls: string): boolean { if ( cls == 'app.view.IPSAppDEListExplorerView' || cls == 'app.view.IPSAppDEMultiDataView' || cls == 'app.view.IPSAppDESearchView' || cls == 'app.view.IPSAppDESearchView2' || cls == 'app.view.IPSAppDEXDataView' || cls == 'control.IPSControlMDataContainer' || cls == 'control.IPSControlXDataContainer' ) return true; return super.instanceof(cls); } }