All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.cuf.xfer.SwingDispatcher Maven / Gradle / Ivy

The newest version!
package net.sf.cuf.xfer;

import javax.swing.*;

/**
 * Java Swing implementation for the Dispatch interface.
 */
public class SwingDispatcher extends AbstractDispatcher implements Dispatch
{
    @Override
    protected void doDispatch(Runnable pRunnable)
    {
        SwingUtilities.invokeLater(pRunnable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy