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