(Contact to, int caretPos, MessageEdit me)
| 51 | private MessageEdit me; |
| 52 | |
| 53 | public AppendNick(Contact to, int caretPos, MessageEdit me) { |
| 54 | super(SR.MS_SELECT_NICKNAME); |
| 55 | this.caretPos=caretPos; |
| 56 | this.me = me; |
| 57 | |
| 58 | |
| 59 | for (Enumeration e=StaticData.getInstance().roster.hContacts.elements(); e.hasMoreElements(); ) { |
| 60 | Contact c=(Contact)e.nextElement(); |
| 61 | if (c.group.name.equals(to.group.name) && c.origin>Contact.ORIGIN_GROUPCHAT && c.status<Presence.PRESENCE_OFFLINE) |
| 62 | itemsList.addElement(c); |
| 63 | } |
| 64 | enableListWrapping(true); |
| 65 | } |
| 66 | |
| 67 | public void eventOk(){ |
| 68 | try { |
nothing calls this directly
no test coverage detected