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