import { IPSAppDESearchView } from './ipsapp-desearch-view'; import { IPSAppDETabExplorerView } from './ipsapp-detab-explorer-view'; import { PSAppDEExplorerViewImpl } from './psapp-deexplorer-view-impl'; export class PSAppDETabExplorerViewImpl extends PSAppDEExplorerViewImpl implements IPSAppDETabExplorerView, IPSAppDESearchView { get tabLayout(): string { return this.M.tabLayout; } get enableQuickSearch(): boolean { return this.M.enableQuickSearch; } get enableSearch(): boolean { return this.M.enableSearch; } get expandSearchForm(): boolean { return this.M.expandSearchForm; } get loadDefault(): boolean { return this.M.loadDefault; } get cls(): string { return 'PSAppDETabExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDESearchView' || cls == 'app.view.IPSAppDETabExplorerView') return true; return super.instanceof(cls); } }