package javax.wireless.messaging;

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

public class MessagePart
{

 public MessagePart(byte[] bytes_1, int int_1, int int_2, String string_1, String string_2, String string_3, String string_4) throws SizeExceededException
 {
 }
 
 public MessagePart(byte[] bytes_1, String string_1, String string_2, String string_3, String string_4) throws SizeExceededException
 {
 }
 
 public MessagePart(InputStream inputstream_1, String string_1, String string_2, String string_3, String string_4) 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;
 }
 
}