import { IPSDESearchFormParam } from './ipsdesearch-form-param'; import { PSDEFormParamImpl } from './psdeform-param-impl'; export class PSDESearchFormParamImpl extends PSDEFormParamImpl implements IPSDESearchFormParam { get cls(): string { return 'PSDESearchFormParamImpl'; } instanceof(cls: string): boolean { if (cls == 'control.form.IPSDESearchFormParam') return true; return super.instanceof(cls); } }