(String mainbar, String text, TextBoxNotify tbn, int constraints)
| 58 | } |
| 59 | |
| 60 | public MIDPTextBox(String mainbar, String text, TextBoxNotify tbn, int constraints) { |
| 61 | |
| 62 | t=new TextBox(mainbar, text, 150, constraints); |
| 63 | |
| 64 | this.tbn=tbn; |
| 65 | |
| 66 | t.addCommand(cmdOK); |
| 67 | t.addCommand(cmdCancel); |
| 68 | |
| 69 | t.setCommandListener(this); |
| 70 | midlet.BombusMod.getInstance().setDisplayable(t); |
| 71 | } |
| 72 | |
| 73 | public MIDPTextBox(String mainbar, String text, TextBoxNotify tbn) { |
| 74 | this(mainbar, text, tbn, TextField.ANY); |
nothing calls this directly
no test coverage detected