01: package org.columba.mail.mailchecking;
02:
03: import java.util.EventObject;
04:
05: import org.columba.mail.command.IMailFolderCommandReference;
06:
07: public class MailCheckingEvent extends EventObject implements
08: IMailCheckingEvent {
09:
10: private IMailFolderCommandReference ref;
11:
12: public MailCheckingEvent(Object source,
13: IMailFolderCommandReference ref) {
14: super (source);
15:
16: this .ref = ref;
17: }
18:
19: public IMailFolderCommandReference getReference() {
20: return ref;
21: }
22:
23: }
|