Package com.valhalla.jbother.plugins.events

Examples of com.valhalla.jbother.plugins.events.MessageReceivedEvent


    }

    public void setLastReceivedMessage(Message message) {
        this.lastReceived = message;

        MessageReceivedEvent event = new MessageReceivedEvent(this);

        Message newMessage = new Message( message.getTo(), message.getType() );
        newMessage.setSubject(message.getSubject());
        newMessage.setBody(message.getBody());
        newMessage.setThread(message.getThread());
        event.setMessage(newMessage);
        com.valhalla.pluginmanager.PluginChain.fireEvent(event);
    }
View Full Code Here

TOP

Related Classes of com.valhalla.jbother.plugins.events.MessageReceivedEvent

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.