Searched defs:open (Results 1 - 7 of 7) sorted by relevance
/javamail/mbox/src/main/java/com/sun/mail/remote/ |
H A D | RemoteInbox.java | 79 public synchronized void open(int mode) throws MessagingException { method in class:RemoteInbox 81 super.open(mode);
|
/javamail/mail/src/main/java/com/sun/mail/pop3/ |
H A D | DefaultFolder.java | 114 public void open(int mode) throws MessagingException { method in class:DefaultFolder 115 throw new MethodNotSupportedException("open");
|
H A D | POP3Folder.java | 199 * @exception MessagingException other open failures 201 public synchronized void open(int mode) throws MessagingException { method in class:POP3Folder 329 * Will not change while the folder is open because the POP3 331 * arriving in open folders. 481 * @exception IllegalStateException if the folder isn't open 495 * @exception IllegalStateException if the folder isn't open 537 * @exception IllegalStateException if the folder isn't open 562 /* Ensure the folder is open */ 568 /* Ensure the folder is not open */ 574 /* Ensure the folder is open [all...] |
/javamail/mail/src/main/java/javax/mail/util/ |
H A D | SharedFileInputStream.java | 123 public synchronized RandomAccessFile open() { method in class:SharedFileInputStream.SharedFile 221 this.in = sf.open(); 236 this.in = sf.open();
|
/javamail/mbox/src/main/java/com/sun/mail/mbox/ |
H A D | MboxFolder.java | 68 private long saved_file_size; // size at the last open, close, or expunge 319 /* Ensure the folder is open */ 325 /* Ensure the folder is not open */ 351 /* Ensure the folder is open & readable */ 357 /* Ensure the folder is open & writable */ 370 public synchronized void open(int mode) throws MessagingException { method in class:MboxFolder 490 // don't use the folder's FD, need to re-open in order to trunc the file
|
/javamail/mail/src/main/java/javax/mail/ |
H A D | Folder.java | 81 * Folder is opened by calling its 'open' method. All Folder methods, 82 * except <code>open</code>, <code>delete</code> and 99 * Message objects from a Folder are only valid while a Folder is open 127 * The open mode of this folder. The open mode is 621 * @param mode open the Folder READ_ONLY or READ_WRITE 632 public abstract void open(int mode) throws MessagingException; method in class:Folder 635 * Close this Folder. This method is valid only on open Folders. <p> 650 * Indicates whether this Folder is in the 'open' state. 651 * @return true if this Folder is in the 'open' stat [all...] |
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPFolder.java | 92 * The {@link #open(int,com.sun.mail.imap.ResyncData) open(int,ResyncData)} 119 * synchronized methods. When checking that a folder is open or 340 * content is cached in memory while the Folder is open. The cached 463 "This operation is not allowed on an open folder" 468 * Ensure the folder is open. 728 // never throw FolderNotFoundException if folder is open 836 if (opened) { // If we are open, we already have this information 837 // Folder is open, make sure information is up to date 972 public synchronized void open(in method in class:IMAPFolder 986 public synchronized List<MailEvent> open(int mode, ResyncData rd) method in class:IMAPFolder [all...] |
Completed in 26 milliseconds