(MenuCommand c, VirtualList v)
| 206 | } |
| 207 | } |
| 208 | public void menuAction(MenuCommand c, VirtualList v) { |
| 209 | if (c == cmdSend) { |
| 210 | if (!complete) { |
| 211 | sendForm(id); |
| 212 | destroyView(); |
| 213 | } |
| 214 | } else { |
| 215 | super.menuAction(c, v); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | public interface FormSubmitListener { |
| 220 | public void formSubmit(Vector fields); |
nothing calls this directly
no test coverage detected