package javax.wireless.messaging;

import java.io.IOException;
import java.io.InputStream;

public class MessagePart
{

 public MessagePart(byte[], int, int, String, String, String, String) throws SizeExceededException
 {
 }
 
 public MessagePart(byte[], String, String, String, String) throws SizeExceededException
 {
 }
 
 public MessagePart(InputStream, String, String, String, String) throws SizeExceededException, IOException
 {
 }
 
 public byte[] getContent()
 {
  return null;
 }
 
 public InputStream getContentAsStream()
 {
  return null;
 }
 
 public String getContentID()
 {
  return null;
 }
 
 public String getContentLocation()
 {
  return null;
 }
 
 public String getEncoding()
 {
  return null;
 }
 
 public int getLength()
 {
  return 0;
 }
 
 public String getMIMEType()
 {
  return null;
 }
 
}