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