import { IPSAppDEExplorerView } from './ipsapp-deexplorer-view'; import { PSAppDEViewImpl } from './psapp-deview-impl'; export class PSAppDEExplorerViewImpl extends PSAppDEViewImpl implements IPSAppDEExplorerView { get iFrameMode(): boolean { return this.M.iFrameMode; } get loadDefault(): boolean { return this.M.loadDefault; } get showDataInfoBar(): boolean { return this.M.showDataInfoBar; } get cls(): string { return 'PSAppDEExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEExplorerView' || cls == 'app.view.IPSAppExplorerView') return true; return super.instanceof(cls); } }