Package org.apache.james.mime4j.dom.field

Examples of org.apache.james.mime4j.dom.field.ContentDescriptionField


     * <code>Content-Description</code> header.
     * @return value of the <code>Content-Description</code> when present,
     * null otherwise
     */
    public String getContentDescription() {
        ContentDescriptionField contentDescriptionField =
            (ContentDescriptionField) fields.get(CONTENT_DESCRIPTION);
        return contentDescriptionField != null ? contentDescriptionField.getDescription() : null;
    }
View Full Code Here

TOP

Related Classes of org.apache.james.mime4j.dom.field.ContentDescriptionField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.