Package com.bbn.openmap.tools.dnd

Examples of com.bbn.openmap.tools.dnd.DefaultTransferableObject


                beanTransferData.add(bean);
                beanTransferData.add(bi);
                beanTransferData.add(new Boolean(false));
                dragSource.startDrag(dge,
                        customCursor,
                        new DefaultTransferableObject(beanTransferData),
                        tdsl);

                revalidate();
                repaint();
            }
View Full Code Here


        beanTransferData.add(new Boolean(true));
        beanTransferData.add(selectedLayer.getName());

        dragSource.startDrag(dge,
                super.getCursor(DragSource.DefaultMoveDrop),
                new DefaultTransferableObject(beanTransferData),
                dsl);

        if (Debug.debugging("beanbox"))
            Debug.output("Exit> startDragAction");
    }
View Full Code Here

TOP

Related Classes of com.bbn.openmap.tools.dnd.DefaultTransferableObject

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.