Confused on event handeling
Ok I know the difference between low level and schemantic events. But, what if I want a component that is supposed to use schemantic events to use a low level event? Her is the deal, I have a JList that has a ListSelectionListener. I used it, but it doesn't do what I want. I want to lisen for a double click. If I use a mouse event, which seems my only option, the I have to use a low level event that listens for a double click anywhere on the frame, and not just attached to the JList. If that is the case, then does that mean I have to write code to tell where the double click occured and if it were in the list then handle it, if not then ignor it? Is there no way to attach a low level event to a specific component instead of having it listen to all components on the frame, as well as the frame itself? But, if I could do that then it wouldn't be a low level event, right?

