(String content, String authorId, String authorName, String room)
| 16 | } |
| 17 | |
| 18 | public static ArrayList<TrinityModule.Message> onMsg(String content, String authorId, String authorName, String room) { |
| 19 | TrinityModule.Message msg = new TrinityModule.Message("Hello, " + authorId + "!", authorId); |
| 20 | ArrayList<TrinityModule.Message> list = new ArrayList(); |
| 21 | list.push(msg); |
| 22 | return list; |
| 23 | } |
| 24 | } |