1 package net.suberic.pooka; 2 import javax.mail.*; 3 import javax.mail.internet.*; 4 5 8 public class UpdatableMBP extends MimeBodyPart { 9 10 13 public UpdatableMBP() { 14 super(); 15 } 16 17 20 public UpdatableMBP(java.io.InputStream is) throws MessagingException{ 21 super(is); 22 } 23 24 27 public void updateMyHeaders() throws MessagingException { 28 updateHeaders(); 29 } 30 31 } 32 | Popular Tags |