mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 22:15:15 -05:00
9cac2cd5b7
find src/com/android/email/ -name \*java|xargs astyle --style=ansi \ --mode=java --indent-switches --indent=spaces=4 --convert-tabs \ --unpad=paren
13 lines
295 B
Java
13 lines
295 B
Java
|
|
package com.android.email.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;
|
|
}
|