import { IPSAppPanelView } from './ipsapp-panel-view'; import { PSAppViewImpl } from './psapp-view-impl'; export class PSAppPanelViewImpl extends PSAppViewImpl implements IPSAppPanelView { get enableDP(): boolean { return this.M.enableDP; } get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get enableWF(): boolean { return this.M.enableWF != null ? this.M.enableWF : false; } get cls(): string { return 'PSAppPanelViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppMobView' || cls == 'app.view.IPSAppPanelView') return true; return super.instanceof(cls); } }