* @function ThemeFlow.fromObj * @description 从传入对象获取标签或符号流动显示和牵引线风格设置类。 * @param {Object} obj - 传入对象。 * @returns {ThemeFlow} ThemeFlow 对象。
(obj)
| 71 | * @returns {ThemeFlow} ThemeFlow 对象。 |
| 72 | */ |
| 73 | static fromObj(obj) { |
| 74 | if (!obj) { |
| 75 | return; |
| 76 | } |
| 77 | var res = new ThemeFlow(); |
| 78 | Util.copy(res, obj); |
| 79 | res.leaderLineStyle = ServerStyle.fromJson(obj.leaderLineStyle); |
| 80 | return res; |
| 81 | } |
| 82 | |
| 83 | } |
| 84 |
no test coverage detected