* 设置指定 path 的属性模型实例值 * @param path 属性路径,支持 a / a.b / a.0 等格式 * @param value 值 * @returns
(path: string, value: IPublicTypeCompositeValue)
| 94 | * @returns |
| 95 | */ |
| 96 | setExtraPropValue(path: string, value: IPublicTypeCompositeValue): void { |
| 97 | return this.getExtraProp(path)?.setValue(value); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * test if the specified key is existing or not. |
nothing calls this directly
no test coverage detected