Searched defs:what (Results 1 - 9 of 9) sorted by relevance
/javamail/client/src/main/java/ |
H A D | ComponentFrame.java | 49 * @param what the component to display 51 public ComponentFrame(Component what) { argument 52 this(what, "Component Frame"); 57 * @param what the component to display 60 public ComponentFrame(Component what, String name) { argument 70 if (what != null) { 71 getContentPane().add("Center", what);
|
H A D | FolderTreeNode.java | 50 * @param what the store for this node 52 public FolderTreeNode(Folder what) { argument 53 super(what); 54 folder = what;
|
H A D | FolderViewer.java | 53 public FolderViewer(Folder what) { argument 62 setFolder(what); 64 // find out what is pressed 74 * @param what the folder to be viewed 76 public void setFolder(Folder what) { argument 81 model.setFolder(what);
|
H A D | StoreTreeNode.java | 49 * @param what the store for this node 51 public StoreTreeNode(Store what) { argument 52 super(what); 53 store = what;
|
H A D | FolderModel.java | 51 public void setFolder(Folder what) throws MessagingException { argument 52 if (what != null) { 55 if (!what.isOpen()) { 56 what.open(Folder.READ_WRITE); 60 messages = what.getMessages(); 69 folder = what; 104 case 1: // From String[] what = getCachedData(aRow); 106 String[] what = getCachedData(aRow); 107 if (what != null) { 108 return what[aColum [all...] |
H A D | MessageViewer.java | 57 public MessageViewer(Message what) { argument 76 setMessage(what); 82 public void setMessage(Message what) { argument 83 displayed = what; 88 if (what != null) { 128 // setup what we want in our viewer
|
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/ |
H A D | BASE64MailboxEncoder.java | 165 * @param what where to write the encoded name 167 public BASE64MailboxEncoder(Writer what) { argument 168 out = what;
|
H A D | IMAPProtocol.java | 1859 * Fetch the specified RFC822 Data item. 'what' names 1860 * the item to be fetched. 'what' can be <code>null</code> 1864 * @param what the item to fetch 1868 public RFC822DATA fetchRFC822(int msgno, String what) argument 1871 what == null ? "RFC822" : "RFC822." + what 2092 public Response[] fetch(MessageSet[] msgsets, String what) argument 2094 return fetch(MessageSet.toString(msgsets), what, false); 2097 public Response[] fetch(int start, int end, String what) argument 2100 what, fals 2103 fetch(int msg, String what) argument 2108 fetch(String msgSequence, String what, boolean uid) argument [all...] |
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPMessage.java | 1600 private String toSection(String what) { argument 1602 return what; 1604 return sectionId + "." + what;
|
Completed in 16 milliseconds