Called when action should be handled @param command @param displayable
(Command command, Displayable displayable)
| 80 | * @param displayable |
| 81 | */ |
| 82 | public void commandAction(Command command, Displayable displayable) { |
| 83 | if (command==cmdCancel) { destroyView(); return;} |
| 84 | if (command==cmdOK) { destroyView(); tbn.OkNotify(t.getString()); return;} |
| 85 | } |
| 86 | |
| 87 | public void destroyView(){ |
| 88 | midlet.BombusMod.getInstance().setDisplayable(parentView); |
nothing calls this directly
no test coverage detected