• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

MouseListener and a Jtree�

 
Ranch Hand
Posts: 195
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a drag and drop JTree that implements DragGestureListener, DragSourceListsner and DropTargetListener. I am trying to add a MouseListener so when a person executes a right-click they can get some data from the nodes of the tree.

I guess my question is where do I implement the MouseListener? I have tried doing so in my DataNode (an extended DefaultMutableTreeNode) and in my tree (an extended JTree) as well as in my abstract classes handling the DnD function.

Nothing I have tried so far seems to register any mouse event. In fact, the tree continues to function with it�s DnD abilities.
 
reply
    Bookmark Topic Watch Topic
  • New Topic