/javamail/mail/src/oldtest/java/javax/mail/internet/socketfactory/ |
H A D | DummySSLSocketFactory.java | 67 public Socket createSocket(Socket socket, String s, int i, boolean flag) argument 70 return factory.createSocket(socket, s, i, flag);
|
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPNestedMessage.java | 145 public synchronized void setFlags(Flags flag, boolean set) argument
|
H A D | IMAPMessage.java | 1018 public synchronized boolean isSet(Flags.Flag flag) argument 1022 return super.isSet(flag); 1028 public synchronized void setFlags(Flags flag, boolean set) argument 1035 p.storeFlags(getSequenceNumber(), flag, set); 1049 * @param peek the peek flag 1060 * @return the peek flag
|
H A D | IMAPFolder.java | 1366 public synchronized void setFlags(Message[] msgs, Flags flag, boolean value) argument 1369 checkFlags(flag); // validate flags 1381 p.storeFlags(ms, flag, value); 1394 Flags flag, boolean value) throws MessagingException { 1400 setFlags(msgs, flag, value); 1406 public synchronized void setFlags(int[] msgnums, Flags flag, boolean value) argument 1412 setFlags(msgs, flag, value); 1471 // If the expunge flag is set, close the folder first. 1478 // If the expunge flag is set or we're open read-only we 1529 // based on the "opened" flag, s 1393 setFlags(int start, int end, Flags flag, boolean value) argument [all...] |
/javamail/mail/src/test/java/com/sun/mail/test/ |
H A D | TestSSLSocketFactory.java | 139 boolean flag) throws IOException { 140 Socket wrappedSocket = defaultFactory.createSocket(socket, s, i, flag); 138 createSocket(Socket socket, String s, int i, boolean flag) argument
|
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/ |
H A D | SearchSequence.java | 89 return flag((FlagTerm)term); 285 protected Argument flag(FlagTerm term) throws SearchException { method in class:SearchSequence
|
/javamail/mail/src/main/java/javax/mail/ |
H A D | Flags.java | 50 * A System flag is represented by the <code>Flags.Flag</code> 51 * inner class. A User defined flag is represented as a String. 75 * m.setFlag(Flags.Flag.DELETED, true); // set the DELETED flag 77 * // Check if DELETED flag is set on this message 116 * This inner class represents an individual system flag. A set 117 * of standard system flag objects are predefined here. 121 * This message has been answered. This flag is set by clients 127 * This message is marked deleted. Clients set this flag to 134 * This message is a draft. This flag is set by clients 140 * This message is flagged. No semantic is defined for this flag 206 Flags(Flag flag) argument 215 Flags(String flag) argument 225 add(Flag flag) argument 234 add(String flag) argument 267 remove(Flag flag) argument 276 remove(String flag) argument 306 contains(Flag flag) argument 316 contains(String flag) argument [all...] |
H A D | Message.java | 531 * Check whether the flag specified in the <code>flag</code> 536 * @param flag the flag 537 * @return value of the specified flag for this message 547 public boolean isSet(Flags.Flag flag) throws MessagingException { argument 548 return getFlags().contains(flag); 560 * @param flag Flags object containing the flags to be set 570 public abstract void setFlags(Flags flag, boolean set) argument 574 * Set the specified flag o 592 setFlag(Flags.Flag flag, boolean set) argument [all...] |
H A D | Folder.java | 466 * any messages in the Folder have the <code>RECENT</code> flag set. <p> 510 * The <code>recurse</code> flag controls whether the deletion affects 642 * @param expunge expunges all deleted messages if this flag is true 676 * The special flag <code>Flags.Flag.USER </code> indicates that this Folder 726 * <code>RECENT</code> flag is set. The total number of messages 727 * that have this flag set is returned. 772 * <code>SEEN</code> flag is set. The total number of messages 773 * that do not have this flag set is returned. 818 * <code>DELETED</code> flag is set. The total number of messages 819 * that have this flag se 1066 setFlags(Message[] msgs, Flags flag, boolean value) argument 1109 setFlags(int start, int end, Flags flag, boolean value) argument 1151 setFlags(int[] msgnums, Flags flag, boolean value) argument [all...] |
/javamail/mail/src/main/java/com/sun/mail/util/ |
H A D | MailSSLSocketFactory.java | 260 boolean flag) throws IOException { 261 return adapteeFactory.createSocket(socket, s, i, flag); 259 createSocket(Socket socket, String s, int i, boolean flag) argument
|
/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | MimeMessage.java | 138 * A flag indicating whether the message has been modified. 141 * directly in the <code>writeTo</code> method. This flag is 151 * this message? This flag is set to false by the public constructor 153 * <code>writeTo</code> method checks this flag and calls the 186 * object. The <code>modified</code> flag is set to true. 316 * Set the strict flag based on property. 327 * <code>modified</code> flag. <p> 1608 * flag is set in this message. 1638 * {@link javax.mail.Flags.Flag#ANSWERED ANSWERED} flag is set 1654 * @param setAnswered set the ANSWERED flag i 2108 isSet(Flags.Flag flag) argument 2124 setFlags(Flags flag, boolean set) argument [all...] |