import { IPSAppDEWFProxyResultView } from './ipsapp-dewfproxy-result-view'; import { PSAppDEViewImpl } from './psapp-deview-impl'; export class PSAppDEWFProxyResultViewImpl extends PSAppDEViewImpl implements IPSAppDEWFProxyResultView { get enableWF(): boolean { return this.M.enableWF; } get cls(): string { return 'PSAppDEWFProxyResultViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEWFProxyResultView') return true; return super.instanceof(cls); } }