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