(variableName, parent)
| 110 | } |
| 111 | |
| 112 | generateCode(variableName, parent){ |
| 113 | |
| 114 | const placeHolderText = this.getAttrValue("placeHolder") |
| 115 | |
| 116 | const config = convertObjectToKeyValueString(this.getConfigCode()) |
| 117 | |
| 118 | return [ |
| 119 | `${variableName} = tk.Text(master=${parent})`, |
| 120 | `${variableName}.config(${config})`, |
| 121 | `${variableName}.${this.getLayoutCode()}` |
| 122 | ] |
| 123 | } |
| 124 | |
| 125 | getToolbarAttrs(){ |
| 126 | const toolBarAttrs = super.getToolbarAttrs() |
no test coverage detected