1 package org.columba.mail.gui.attachment; 2 3 import java.io.IOException ; 4 import java.io.InputStream ; 5 import java.nio.charset.Charset ; 6 7 12 public interface IAttachmentContext { 13 14 20 public InputStream getContent() throws IOException ; 21 22 public String getFileName(); 23 24 public String getContentType(); 25 26 public String getContentSubtype(); 27 28 public Charset getCharset(); 29 30 public String getContentParameter(String key); 31 32 public String getContentId(); 33 34 public String getContentDescription(); 35 36 public String getDispositionParameter(String key); 37 38 } 39 | Popular Tags |