I am having some trouble dealing with pick events on JUNG graphs. I have been using the GraphMouseListener interface to listen for clicks on vertices, but now I need to add support for picking edges, and I can't seem to find a way to do it on the documentation.
Any pointers?
Thank you
GraphEditorDemo.javaexample or other examples as mentioned in my post [stackoverflow.com/questions/8226624/…) – ee. Dec 8 '11 at 10:04GraphEditorDemo.java...but you need to change the mouse mode from the mouse mode list to picking mode. But, if your desire is to have a picking behavior ala Photoshop, then it doesn't behave like one. It just allows you to pick an edge and listen to its event. – ee. Dec 9 '11 at 0:56