import { IPSAppDEDataViewExplorerView } from './ipsapp-dedata-view-explorer-view'; import { PSAppDESideBarExplorerViewImpl } from './psapp-deside-bar-explorer-view-impl'; export class PSAppDEDataViewExplorerViewImpl extends PSAppDESideBarExplorerViewImpl implements IPSAppDEDataViewExplorerView { get cls(): string { return 'PSAppDEDataViewExplorerViewImpl'; } instanceof(cls: string): boolean { if ( cls == 'app.view.IPSAppDEDataViewExplorerView' || 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); } }