Package bibliothek.gui.dock.common.event
Interface CDoubleClickListener
public interface CDoubleClickListener
A listener that gets informed when the user makes a double click onto
a dockable.
- Author:
- Benjamin Sigg
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanclicked(CDockable source, MouseEvent event) Called when a double click happened.
-
Method Details
-
clicked
Called when a double click happened.- Parameters:
source- the source of the eventevent- description of the event- Returns:
trueif this method has processed the the event and no other listeners need to be informed about the event,falseif the event was not processed.
-