Package org.openstreetmap.josm.gui
Interface PrimitiveHoverListener
-
- All Known Implementing Classes:
AdvancedPreference.UnclearableOsmDataLayer
,CorrelationSupportLayer
,OsmDataLayer
,PropertiesDialog
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PrimitiveHoverListener
Interface to notify listeners when the user moves the mouse pointer onto or off of a primitive.- Since:
- 18574
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PrimitiveHoverListener.PrimitiveHoverEvent
Event that is fired when the mouse pointer is moved over a primitive.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
primitiveHovered(PrimitiveHoverListener.PrimitiveHoverEvent e)
Method called when the primitive under the mouse pointer changes.
-
-
-
Method Detail
-
primitiveHovered
void primitiveHovered(PrimitiveHoverListener.PrimitiveHoverEvent e)
Method called when the primitive under the mouse pointer changes.- Parameters:
e
- Event object describing the hovered primitive and related information
-
-