Package org.broad.igv.ui.event

Examples of org.broad.igv.ui.event.DragStoppedEvent


    public void mouseReleased(final MouseEvent e) {

        if (isDragging) {
            isDragging = false;
            getReferenceFame().getEventBus().post(new DragStoppedEvent());
        }
        Component panel = (Component) e.getSource();
        panel.setCursor(getCursor());
    }
View Full Code Here

TOP

Related Classes of org.broad.igv.ui.event.DragStoppedEvent

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.