mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 13:05:03 -05:00
12d1097a24
approximating AOSP coding standards.
34 lines
937 B
Java
34 lines
937 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
|
|
public interface Part {
|
|
public void addHeader(String name, String value) throws MessagingException;
|
|
|
|
public void removeHeader(String name) throws MessagingException;
|
|
|
|
public void setHeader(String name, String value) throws MessagingException;
|
|
|
|
public Body getBody();
|
|
|
|
public String getContentType() throws MessagingException;
|
|
|
|
public String getDisposition() throws MessagingException;
|
|
|
|
public String getContentId() throws MessagingException;
|
|
|
|
public String[] getHeader(String name) throws MessagingException;
|
|
|
|
public int getSize();
|
|
|
|
public boolean isMimeType(String mimeType) throws MessagingException;
|
|
|
|
public String getMimeType() throws MessagingException;
|
|
|
|
public void setBody(Body body) throws MessagingException;
|
|
|
|
public void writeTo(OutputStream out) throws IOException, MessagingException;
|
|
}
|