import { IPSDEFVRValueRange2Condition } from './ipsdefvrvalue-range2-condition'; import { PSDEFVRSingleConditionImpl } from './psdefvrsingle-condition-impl'; export class PSDEFVRValueRange2ConditionImpl extends PSDEFVRSingleConditionImpl implements IPSDEFVRValueRange2Condition { get maxValue(): number { return this.M.maxValue; } get minValue(): number { return this.M.minValue; } get includeMaxValue(): boolean { return this.M.includeMaxValue; } get includeMinValue(): boolean { return this.M.includeMinValue; } get cls(): string { return 'PSDEFVRValueRange2ConditionImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.defield.valuerule.IPSDEFVRValueRange2Condition') return true; return super.instanceof(cls); } }