1 package org.columba.mail.mailchecking; 2 3 import java.util.EventObject ; 4 5 import org.columba.mail.command.IMailFolderCommandReference; 6 7 public class MailCheckingEvent extends EventObject implements IMailCheckingEvent { 8 9 private IMailFolderCommandReference ref; 10 11 public MailCheckingEvent(Object source, IMailFolderCommandReference ref) { 12 super(source); 13 14 this.ref = ref; 15 } 16 17 public IMailFolderCommandReference getReference() { 18 return ref; 19 } 20 21 } 22 | Popular Tags |