Lines Matching defs:encoding
53 * encoding). The data may have been encoded by the application,
55 * The encoding is supplied when this object is created. The data
64 private String encoding;
68 * encoded using the specified encoding. The encoding must
71 * @param encoding the Content-Transfer-Encoding
73 public PreencodedMimeBodyPart(String encoding) {
74 this.encoding = encoding;
78 * Returns the content transfer encoding specified when
82 return encoding;
121 * the encoding that was specified when this object was created.
125 MimeBodyPart.setEncoding(this, encoding);