* Get text field from title object * 从标题对象获取文本字段
()
| 320 | * 从标题对象获取文本字段 |
| 321 | */ |
| 322 | public getTextField(): GTextField | null { |
| 323 | if (this._titleObject instanceof GTextField) { |
| 324 | return this._titleObject; |
| 325 | } else if (this._titleObject instanceof GButton) { |
| 326 | return this._titleObject.getTextField(); |
| 327 | } |
| 328 | return null; |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * Fire a click event programmatically |
no outgoing calls
no test coverage detected