import { IPSAppDEWFExplorerView } from './ipsapp-dewfexplorer-view'; import { PSAppDEExplorerViewImpl } from './psapp-deexplorer-view-impl'; export class PSAppDEWFExplorerViewImpl extends PSAppDEExplorerViewImpl implements IPSAppDEWFExplorerView { get enableWF(): boolean { return this.M.enableWF; } get cls(): string { return 'PSAppDEWFExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEWFExplorerView' || cls == 'app.view.IPSAppDEWFView') return true; return super.instanceof(cls); } }