1 32 33 package scioworks.imap.presentation.base; 34 35 public interface BaseEvents { 36 static final String EVENT_login = "Login"; 38 39 static final String EVENT_send = "Send"; 41 static final String EVENT_reply = "Reply"; 42 static final String EVENT_replyAll = "Reply All"; 43 static final String EVENT_delete = "Delete"; 44 static final String EVENT_forward = "Forward"; 45 static final String EVENT_downloadAttachment = "Download"; 46 static final String EVENT_attachFile = "Attach File"; 47 static final String EVENT_removeFile = "Remove"; 48 static final String EVENT_move = "Move"; 49 static final String EVENT_createFolder = "Create Folder"; 50 static final String EVENT_renameFolder = "Rename Folder"; 51 static final String EVENT_removeFolder = "Remove Folder"; 52 53 } 54 55 56 | Popular Tags |