(variableName, parent)
| 35 | } |
| 36 | |
| 37 | generateCode(variableName, parent){ |
| 38 | |
| 39 | const placeHolderText = this.getAttrValue("placeHolder") |
| 40 | |
| 41 | const config = convertObjectToKeyValueString(this.getConfigCode()) |
| 42 | |
| 43 | return [ |
| 44 | `${variableName} = tk.Entry(master=${parent})`, |
| 45 | `${variableName}.config(${config})`, |
| 46 | `${variableName}.${this.getLayoutCode()}` |
| 47 | ] |
| 48 | } |
| 49 | |
| 50 | getToolbarAttrs(){ |
| 51 |
nothing calls this directly
no test coverage detected