Coverage Report - org.paneris.jammyjoes.mail.Sender
 
Classes in this File Line Coverage Branch Coverage Complexity
Sender
N/A
N/A
1
 
 1  
 package org.paneris.jammyjoes.mail;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 import javax.mail.MessagingException;
 6  
 
 7  
 import com.quiotix.html.parser.ParseException;
 8  
 
 9  
 public interface Sender {
 10  
   public void send(MimeMail newsletter) throws MessagingException, ParseException, IOException;
 11  
 }