/javamail/mail/src/main/java/javax/mail/ |
H A D | MultipartDataSource.java | 74 * @param index the index of the desired Part 76 * @exception IndexOutOfBoundsException if the given index 80 public BodyPart getBodyPart(int index) throws MessagingException; argument
|
H A D | Multipart.java | 148 * @param index the index of the desired Part 150 * @exception IndexOutOfBoundsException if the given index 154 public synchronized BodyPart getBodyPart(int index) argument 159 return (BodyPart)parts.elementAt(index); 187 * @param index Index of the part to remove 188 * @exception IndexOutOfBoundsException if the given index 195 public synchronized void removeBodyPart(int index) argument 200 BodyPart part = (BodyPart)parts.elementAt(index); 201 parts.removeElementAt(index); 240 addBodyPart(BodyPart part, int index) argument [all...] |
/javamail/outlook/src/main/java/ |
H A D | MSMultipartDataSource.java | 101 public BodyPart getBodyPart(int index) throws MessagingException { argument 102 return (BodyPart)parts.get(index);
|
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPMultipartDataSource.java | 80 public BodyPart getBodyPart(int index) throws MessagingException { argument 81 return parts.get(index);
|
/javamail/mail/src/main/java/com/sun/mail/util/ |
H A D | UUDecoderStream.java | 61 private int index = 0; // index into the cache field in class:UUDecoderStream 118 if (index >= bufsize) { 122 index = 0; // reset index into buffer 124 return buffer[index++] & 0xff; // return lower byte 147 return ((in.available() * 3)/4 + (bufsize-index));
|
H A D | BASE64DecoderStream.java | 59 private int index = 0; // index into the cache field in class:BASE64DecoderStream 109 if (index >= bufsize) { 113 index = 0; // reset index into buffer 115 return buffer[index++] & 0xff; // Zero off the MSB 135 while (index < bufsize && len > 0) { 136 buf[off++] = buffer[index++]; 139 if (index >= bufsize) 140 bufsize = index [all...] |
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/ |
H A D | FetchResponse.java | 103 public Item getItem(int index) { argument 104 return items[index]; 200 if (buffer[index] != '(') 202 "error in FETCH parsing, missing '(' at index " + index); 207 index++; // skip '(', or SPACE 209 if (index >= size) 218 "error in FETCH parsing, unrecognized item at index " + 219 index + ", starts with \"" + next20() + "\""); 220 } while (buffer[index] ! [all...] |
/javamail/dsn/src/main/java/com/sun/mail/dsn/ |
H A D | MultipartReport.java | 376 private synchronized void setBodyPart(BodyPart part, int index) argument 381 if (index < parts.size()) 382 super.removeBodyPart(index); 383 super.addBodyPart(part, index); 416 * @param index Index of the part to remove 419 public void removeBodyPart(int index) throws MessagingException { argument 442 * Adds a BodyPart at position <code>index</code>. 446 * @param index Location where to insert the part 449 public synchronized void addBodyPart(BodyPart part, int index) argument
|
/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | MimeMultipart.java | 341 * @param index the index of the desired BodyPart 345 public synchronized BodyPart getBodyPart(int index) argument 348 return super.getBodyPart(index); 393 * @param index Index of the part to remove 394 * @exception IndexOutOfBoundsException if the given index 401 public void removeBodyPart(int index) throws MessagingException { argument 403 super.removeBodyPart(index); 423 * Adds a BodyPart at position <code>index</code>. 424 * If <code>index</cod 436 addBodyPart(BodyPart part, int index) argument [all...] |
/javamail/mail/src/main/java/com/sun/mail/iap/ |
H A D | Response.java | 55 protected int index; // internal index (updated during the parse) field in class:Response 56 protected int pindex; // index after parse, for reset 127 index = r.index; 151 index = 0; // position internal index at start 155 if (buffer[index] == '+') { // Continuation statement 157 index += 1; // Position beyond the '+' 159 } else if (buffer[index] [all...] |
/javamail/mail/src/main/java/com/sun/mail/util/logging/ |
H A D | MailHandler.java | 299 * The attachment order maps directly to the array index order in this 300 * <tt>Handler</tt> with zero index being the first attachment. The number of 390 * 3. The index of the first filter to accept a log record. 397 * This must be less than the body filter index (-1). 434 * A mapping of log record to matching filter index. Negative one is used 743 * This is used to get the filter index from when {@code isLoggable} and 746 * @return the filter index or MUTEX_PUBLISH if unknown. 760 * This is used to record the filter index when {@code isLoggable} and 763 * @param index the filter index 766 setMatchedPart(int index) argument 778 clearMatches(int index) argument 3457 createBodyPart(int index) argument [all...] |