Package org.jitterbit.application.ui.job

Examples of org.jitterbit.application.ui.job.JobMessage


    public void addJobMessageListener(JobMessageListener lst) {
        messageListeners.add(lst);
    }

    protected void setNewMessage(String message) {
        JobMessage m = new JobMessage(message);
        for (JobMessageListener lst : messageListeners) {
            lst.messageChanged(m);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.job.JobMessage

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.