mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 03:55:04 -05:00
f31b2702a4
Conflicts: src/com/android/email/Email.java
13 lines
289 B
Java
13 lines
289 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
|
|
public interface Body
|
|
{
|
|
public InputStream getInputStream() throws MessagingException;
|
|
public void writeTo(OutputStream out) throws IOException, MessagingException;
|
|
}
|