Package de.spotnik.mail.core.model

Examples of de.spotnik.mail.core.model.SpotnikMessage


     *
     * @param account the mail account of this message
     */
    private void initSpotnikMessage( MailAccount account)
    {
        this.spotnikMessage = new SpotnikMessage();
       
        this.spotnikMessage.setMailAccount(account);
        this.spotnikMessage.setReceivedOnDate(this.receivedOn);
        this.spotnikMessage.setSendOnDate(this.sentOn);
        this.spotnikMessage.setSubject(this.subject);
View Full Code Here

TOP

Related Classes of de.spotnik.mail.core.model.SpotnikMessage

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.