(Display display)
| 33 | String acttext; |
| 34 | |
| 35 | public ActivityList(Display display) { |
| 36 | super(SR.MS_USERACTIVITY); |
| 37 | |
| 38 | for (Enumeration e = Activities.getInstance().actValue.elements(); e.hasMoreElements();) { |
| 39 | SimpleString item = new SimpleString((String)e.nextElement(), false); |
| 40 | item.selectable = true; |
| 41 | itemsList.addElement(item); |
| 42 | } |
| 43 | enableListWrapping(true); |
| 44 | } |
| 45 | |
| 46 | public void cmdOk() { |
| 47 | eventOk(); |
nothing calls this directly
no test coverage detected