import { IPSAppDEIndexView } from './ipsapp-deindex-view'; import { PSAppDEXDataViewImpl } from './psapp-dexdata-view-impl'; export class PSAppDEIndexViewImpl extends PSAppDEXDataViewImpl implements IPSAppDEIndexView { get enableWF(): boolean { return this.M.enableWF != null ? this.M.enableWF : false; } get showCaptionBar(): boolean { return this.M.showCaptionBar != null ? this.M.showCaptionBar : true; } get cls(): string { return 'PSAppDEIndexViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEIndexView' || cls == 'app.view.IPSAppDataRelationView') return true; return super.instanceof(cls); } }