Package org.flexdock.docking.drag

Examples of org.flexdock.docking.drag.DragManager


            return null;

        for (Iterator it = dockable.getDragSources().iterator(); it.hasNext();) {
            Object obj = it.next();
            if (obj instanceof Component) {
                DragManager listener = getDragListener((Component) obj);
                if (listener != null)
                    return listener;
            }
        }
        return null;
View Full Code Here


     */
    public static void updateDragListeners(Dockable dockable) {
        if (dockable == null)
            return;

        DragManager dragListener = getDragListener(dockable);
        if (dragListener == null) {
            dragListener = new DragManager(dockable);
        }

        for (Iterator it = dockable.getDragSources().iterator(); it.hasNext();) {
            Object obj = it.next();
            if (obj instanceof Component) {
View Full Code Here

TOP

Related Classes of org.flexdock.docking.drag.DragManager

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.