import { IPSAppDEMobDataViewExplorerView } from './ipsapp-demob-data-view-explorer-view'; import { PSAppDEDataViewExplorerViewImpl } from './psapp-dedata-view-explorer-view-impl'; export class PSAppDEMobDataViewExplorerViewImpl extends PSAppDEDataViewExplorerViewImpl implements IPSAppDEMobDataViewExplorerView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobDataViewExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobDataViewExplorerView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }