import { IPSAppDEWFActionView } from './ipsapp-dewfaction-view'; import { PSAppDEGridViewImpl } from './psapp-degrid-view-impl'; export class PSAppDEWFGridViewImpl extends PSAppDEGridViewImpl implements IPSAppDEWFActionView { get wFStepValue(): string { return this.M.wFStepValue; } get enableWF(): boolean { return this.M.enableWF; } get wFIAMode(): boolean { return this.M.wFIAMode; } get cls(): string { return 'PSAppDEWFGridViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEWFActionView') return true; return super.instanceof(cls); } }