import { IPSDEStateWizardPanel } from './ipsdestate-wizard-panel'; import { PSDEWizardPanelImpl } from './psdewizard-panel-impl'; export class PSDEStateWizardPanelImpl extends PSDEWizardPanelImpl implements IPSDEStateWizardPanel { get showActionBar(): boolean { return this.M.showActionBar; } get cls(): string { return 'PSDEStateWizardPanelImpl'; } instanceof(cls: string): boolean { if (cls == 'control.wizardpanel.IPSDEStateWizardPanel') return true; return super.instanceof(cls); } }