import { IPSTreeExpBar } from './ipstree-exp-bar'; import { PSExpBarImpl } from './psexp-bar-impl'; export class PSTreeExpBarImpl extends PSExpBarImpl implements IPSTreeExpBar { get cls(): string { return 'PSTreeExpBarImpl'; } instanceof(cls: string): boolean { if (cls == 'control.expbar.IPSTreeExpBar') return true; return super.instanceof(cls); } }