Searched defs:source (Results 1 - 7 of 7) sorted by relevance

/javamail/mail/src/main/java/javax/mail/event/
H A DMailEvent.java55 * Construct a MailEvent referring to the given source.
57 * @param source the source of the event
59 public MailEvent(Object source) { argument
60 super(source);
H A DConnectionEvent.java73 * @param source The source object
76 public ConnectionEvent(Object source, int type) { argument
77 super(source);
H A DMessageChangedEvent.java75 * @param source The folder that owns the message
79 public MessageChangedEvent(Object source, int type, Message msg) { argument
80 super(source);
H A DFolderEvent.java97 * @param source The source of the event
101 public FolderEvent(Object source, Folder folder, int type) { argument
102 this(source, folder, folder, type);
108 * @param source The source of the event
114 public FolderEvent(Object source, Folder oldFolder, argument
116 super(source);
/javamail/mail/src/main/java/com/sun/mail/smtp/
H A DSMTPMessage.java116 * <code>source</code> MimeMessage. The new message is independent
122 * @param source the message to copy content from
125 public SMTPMessage(MimeMessage source) throws MessagingException { argument
126 super(source);
/javamail/mail/src/main/java/javax/mail/internet/
H A DMimeMessage.java222 * <code>source</code> MimeMessage. The new message is independent
228 * @param source the message to copy content from
232 public MimeMessage(MimeMessage source) throws MessagingException { argument
233 super(source.session);
234 flags = source.getFlags();
238 int size = source.getSize();
244 strict = source.strict;
245 source.writeTo(bos);
/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DMailHandler.java1801 DataSource source = new ByteArrayDataSource(buf.toString(), type);
1802 part.setDataHandler(new DataHandler(source));
4083 * get the class loader, or a source object to get the class loader.
4250 * The source containing the class loader.
4252 private final Object source; field in class:MailHandler.GetAndSetContext
4255 * @param source null for boot class loader, a class loader, a class
4256 * used to get the class loader, or a source object to get the class
4259 GetAndSetContext(final Object source) { argument
4260 this.source = source;
[all...]

Completed in 70 milliseconds